summaryrefslogtreecommitdiffstats
path: root/templates/page.html
diff options
context:
space:
mode:
authorclsr <clsr@clsr.net>2017-08-25 16:02:01 +0200
committerclsr <clsr@clsr.net>2017-08-25 16:02:06 +0200
commitc626ecdc562f99fbaf2130f7136d7f9b0ea7b58a (patch)
treebb1c5ee6b1fcc19d195f6ebca05e226be00cd1a6 /templates/page.html
parented64d2fb11b4833a8dcbe29225f90bf6462dc8ad (diff)
downloadcn-http-c626ecdc562f99fbaf2130f7136d7f9b0ea7b58a.tar.gz
cn-http-c626ecdc562f99fbaf2130f7136d7f9b0ea7b58a.zip
Implement draft/cnm-selector hash fragment anchorsv0.1.5
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html
index 0f89e2d..4a356cb 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -60,7 +60,11 @@
{{- block "toc" . -}}
{{- inc .Title -}}
<li>
- <a href="#/{{anchor}}">{{.Title}}</a>
+ {{- if $l := lanchor -}}
+ <a href="#/{{$l}}">{{.Title}}</a>
+ {{- else -}}
+ <a href="#${{ianchor}}">{{.Title}}</a>
+ {{- end -}}
{{- with .Children -}}
<ul>
{{- range . -}}
@@ -72,6 +76,7 @@
{{- dec -}}
{{- end -}}
{{- end -}}
+ {{- rst -}}
</ul>
</details>
</nav>