Markdownify breadcrumb .Title

This commit is contained in:
Will Faught
2023-03-19 22:20:56 -07:00
parent 0ace823e1d
commit 5d0c865ace

View File

@@ -4,7 +4,7 @@
<nav aria-label="{{ i18n `paige_breadcrumb` }}" class="d-flex justify-content-center mt-3" id="paige-breadcrumb"> <nav aria-label="{{ i18n `paige_breadcrumb` }}" class="d-flex justify-content-center mt-3" id="paige-breadcrumb">
<ol class="breadcrumb"> <ol class="breadcrumb">
{{ range .Reverse }} {{ range .Reverse }}
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> <li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title | markdownify}}</a></li>
{{ end }} {{ end }}
</ol> </ol>
</nav> </nav>