Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
SquadScope
SquadScope
/
layouts
/
partials
/
anchored_headings.html
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
html
6 lines
225 Bytes
Copy permalink
Copy
Raw
1
{{- /* formats .Content headings by adding an anchor */ -}}
2
{{ . | replaceRE
3
"(
<h
[1
-6
]
id=
\"([^\"]+)\".+)(</h[1-6]+
>
)"
4
"${1}
<a
hidden
class=
\"anchor\"
aria-hidden=
\"true\"
href=
\"#${2}\"
>
#
</a>
${3}"
5
| safeHTML
6
}}