fime/themes/ace-documentation/layouts/shortcodes/doublecode.html

34 lines
1011 B
HTML
Raw Permalink Normal View History

2022-09-28 19:20:15 +00:00
{{ .Scratch.Set "content" "" }}
{{ .Scratch.Set "identifier" "" }}
{{ $identifier := "" }}
{{ $filepath := .Get "file"}}
{{ if ($filepath) }}
{{ .Scratch.Set "content" ($filepath | readFile) }}
{{ .Scratch.Set "identifier" (first 10 (md5 (.Scratch.Get "content"))) }}
{{ else }}
{{ .Scratch.Set "content" .Inner }}
{{ .Scratch.Set "identifier" (first 10 (md5 .Inner)) }}
{{ end}}
{{ $lang := .Get "lang" }}
<div class="border border-light" style="border-width:3px!important;">
<div class="px-3 py-2">
{{ (.Scratch.Get "content") | safeHTML }}
</div>
</div>
<div class="position-relative">
<div class="position-absolute" style="right:0;">
<button class="btn btn-light" data-clipboard-target="#{{printf "clipboard_%s" (.Scratch.Get "identifier") }}">
Copy
</button>
</div>
<div id="{{printf "clipboard_%s" (.Scratch.Get "identifier") }}">
{{ (print "```" $lang "\n" (.Scratch.Get "content") "\n```") | markdownify }}
</div>
</div>