summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--layouts/index.html2
-rw-r--r--layouts/partials/release.html2
-rw-r--r--static/css/styles.css14
3 files changed, 16 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html
index e0e8308..e815b92 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,3 +1,3 @@
{{ define "main" }}
- {{ .Content }}
+ {{ .Content | replaceRE "(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)" "${1}&nbsp;<a class=\"headline-hash\" href=\"#${2}\">#</a> ${3}" | safeHTML }}
{{ end }}
diff --git a/layouts/partials/release.html b/layouts/partials/release.html
index 1c5972a..7bd1c1a 100644
--- a/layouts/partials/release.html
+++ b/layouts/partials/release.html
@@ -13,4 +13,4 @@
Version number: {{ .Params.version_number }}
</p>
</div>
-{{ .Content }}
+{{ .Content | replaceRE "(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)" "${1}&nbsp;<a class=\"headline-hash\" href=\"#${2}\">#</a> ${3}" | safeHTML }}
diff --git a/static/css/styles.css b/static/css/styles.css
index e271186..f496c01 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -121,6 +121,20 @@ nav a.active {
text-align: center;
}
+.headline-hash {
+ display: none;
+ text-decoration: none;
+}
+
+h1:hover .headline-hash,
+h2:hover .headline-hash,
+h3:hover .headline-hash,
+h4:hover .headline-hash,
+h5:hover .headline-hash,
+h6:hover .headline-hash {
+ display: inline;
+}
+
.release {
border: 1px solid var(--fg);
padding: 5px 8px;