| | |
| | | {{end}} |
| | | |
| | | {{/* Wikilinks */}} |
| | | {{$wikilinks := $raw | findRE "!?\\[\\[\\S[^\\[\\]\\|]*(?:\\|[^\\[\\]]*)?\\S\\]\\]" }} |
| | | {{$wikilinks := $content | findRE "!?\\[\\[\\S[^\\[\\]\\|]*(?:\\|[^\\[\\]]*)?\\S\\]\\]" }} |
| | | {{$codefences := $raw | findRE "\\x60[^\\x60\\n]+\\x60"}} |
| | | {{$codeblocks := $raw | findRE "\\x60{3}[^\\x60]+\\x60{3}"}} |
| | | {{$code := union $codefences $codeblocks}} |
| | |
| | | {{if (hasPrefix . "!")}} |
| | | {{$inner := . | strings.TrimPrefix "![[" | strings.TrimSuffix "]]" }} |
| | | {{$split := split $inner "|"}} |
| | | {{$path := index $split 0}} |
| | | {{$path := index $split 0 | relURL}} |
| | | {{$reference := split $path "#"}} |
| | | {{$title := index $reference 0}} |
| | | {{$display := default $title (index $split 1)}} |