vanilla-hugo/layouts/shortcodes/codeblock.html
Danila Fedorin 67da389005 Break up code creating highlight groups and pass in line numbers
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
2024-05-21 20:39:21 -07:00

11 lines
432 B
HTML

{{ partial "geturl.html" (dict "scratch" .Scratch "path" (.Get 1) "siteSourceUrl" .Site.Params.siteSourceUrl "submoduleLinks" .Site.Data.submodules) }}
{{ $groupconfig := dict
"url" (.Scratch.Get "bestUrl")
"path" (.Get 1)
"comment" ", entire file"
"code" (readFile (printf "code/%s" (.Get 1)))
"language" (.Get 0)
"opts" "linenos=table"
}}
{{ partial "highlightgroup.html" $groupconfig }}