hugo content with obsidian wikilinks
inspired by: https://github.com/milafrerichs/hugo-wikilinks copy relevant files from your template into matching folder cp themes/PaperMod/layouts/_default/single.html layouts/_default/single.html cp themes/PaperMod/layouts/_default/list.html layouts/_default/list.html change content rendering to use the wikilinks partial old: single.html ... {{- if .Content }} <div class="post-content"> {{- if not (.Param "disableAnchoredHeadings") }} {{- partial "anchored_headings.html" .Content -}} {{- else }}{{ .Content }}{{ end }} </div> {{- end }} ... new: single.html ... {{- if .Content }} <div class="post-content"> {{- if in ....