#39, Add expand and tabs shortcodes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<div class="book-expand">
|
||||
<label>
|
||||
<div class="book-expand-head flex justify-between">
|
||||
<span>{{ default "Expand" (.Get 0) }}</span>
|
||||
<span>{{ default "↕" (.Get 1) }}</span>
|
||||
</div>
|
||||
<input type="checkbox" style="display: none" />
|
||||
<div class="book-expand-content markdown-inner">
|
||||
{{- .Inner | markdownify -}}
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
@@ -0,0 +1,12 @@
|
||||
{{ if .Parent }}
|
||||
{{ $name := .Get 0 }}
|
||||
{{ $group := printf "tabs-%s" (.Parent.Get 0) }}
|
||||
|
||||
{{ if not (.Parent.Scratch.Get $group) }}
|
||||
{{ .Parent.Scratch.Set $group slice }}
|
||||
{{ end }}
|
||||
|
||||
{{ .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }}
|
||||
{{ else }}
|
||||
{{- errorf "%q: tab shortcode must be inside tabs shortcode" .Page.Path -}}
|
||||
{{ end}}
|
||||
@@ -0,0 +1,19 @@
|
||||
{{ if .Inner }}{{ end }}
|
||||
{{ $id := .Get 0 }}
|
||||
{{ $group := printf "tabs-%s" $id }}
|
||||
|
||||
<div class="book-tabs">
|
||||
<div class="book-tabs-head">
|
||||
{{ range $index, $tab := .Scratch.Get $group}}
|
||||
<label for="{{ printf "%s-%d" $group $index }}">
|
||||
<span>{{ $tab.Name }}</span>
|
||||
</label>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ range $index, $tab := .Scratch.Get $group}}
|
||||
<input type="radio" name="{{ $group }}" style="display: none;" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} />
|
||||
<div class="book-tabs-content markdown-inner">
|
||||
<span>{{ .Content | markdownify }}</span>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
Reference in New Issue
Block a user