Md Jawad Noor Asif
2023-01-04 c5b103c85feafa96d5e5ecc572b043331d4a6bd4
fix: fix unicode broken tags (#261)

1 files modified
9 ■■■■ changed files
layouts/_default/single.html 9 ●●●● patch | view | raw | blame | history
layouts/_default/single.html
@@ -15,7 +15,14 @@
      </p>
      <ul class="tags">
          {{ range (.GetTerms "tags") }}
          <li><a href="{{ .Permalink }}">{{ .LinkTitle | humanize }}</a></li>
          <li><a href="{{ .Permalink }}">
          {{if (eq $.Site.Language.Lang "en")}}
            {{ .LinkTitle | humanize }}
          {{else}}
            {{ .LinkTitle }}
          {{end}}
            </a>
           </li>
          {{ end }}
      </ul>
      {{partial "toc.html" .}}