We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83d5434 commit 7eaa54fCopy full SHA for 7eaa54f
layouts/_default/_markup/render-heading.html
@@ -0,0 +1,4 @@
1
+<h{{ .Level }} id="{{ .Anchor }}" {{- with .Attributes.class }} class="{{ . }}" {{- end }}>
2
+ {{ .Text }}
3
+ <a class="anchor" href="#{{ .Anchor }}">#</a>
4
+</h{{ .Level }}>
static/css/style.css
@@ -181,7 +181,6 @@ a.home-link {
181
color: var(--fg_0);
182
}
183
184
-
185
.summary {
186
border: 1px solid var(--fg_0);
187
padding: 10px;
@@ -230,4 +229,14 @@ a.footnote-ref::after {
230
229
231
sup {
232
line-height: 100%;
233
-}
+}
+
234
+.anchor {
235
+ visibility: hidden;
236
+ text-decoration: none;
237
238
239
+.anchor:hover,
240
+*:hover > .anchor {
241
+ visibility: visible;
242
0 commit comments