Welcome to mirror list, hosted at ThFree Co, Russian Federation.

doublecode.html « shortcodes « layouts - github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e57b35571d43a0d6705e7f47e4df452179a0ca32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{ .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>