diff --git a/scripts/generate.py b/scripts/generate.py
index bc9e10b..68f5d29 100644
--- a/scripts/generate.py
+++ b/scripts/generate.py
@@ -626,12 +626,12 @@ def render_connections(headline_id, content, graph):
if headline_id not in graph['backlinks']:
return
- content.append("
These notes link here:")
+ content.append("- Linked from
")
for backlink in sorted(graph['backlinks'][headline_id], key=lambda x: graph['nodes'][x]['title']):
link = graph["nodes"][backlink]
title = link["title"]
content.append(f"- {html.escape(title)}
")
- content.append("
")
+ content.append("")
def render(headline, doc, graph, headlineLevel):
try:
diff --git a/static/style.css b/static/style.css
index 1b32ce3..fa8439e 100644
--- a/static/style.css
+++ b/static/style.css
@@ -309,7 +309,7 @@ li .tag {
}
li .tag::after {
- content: ":: ";
+ content: " :: ";
}
a.internal::before {