mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
fix: fix rendering of nested shortcodes in tabs (#363)
This commit is contained in:
parent
e1c6517723
commit
1b203a991c
@ -6,9 +6,9 @@
|
||||
|
||||
|
||||
<div class="gblog-columns gblog-columns--{{ $size }} flex flex-gap flex-mobile-column">
|
||||
{{ range split .Inner "<--->" }}
|
||||
{{- range split .Inner "<--->" }}
|
||||
<div class="gblog-columns__content gblog-markdown--nested flex-even">
|
||||
{{ . | $.Page.RenderString }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
</div>
|
||||
|
@ -1,12 +1,12 @@
|
||||
{{ if .Parent }}
|
||||
{{ $name := .Get 0 }}
|
||||
{{ $group := printf "tabs-%s" (.Parent.Get 0) }}
|
||||
{{- if .Parent }}
|
||||
{{- $name := .Get 0 }}
|
||||
{{- $group := printf "tabs-%s" (.Parent.Get 0) }}
|
||||
|
||||
{{ if not (.Parent.Scratch.Get $group) }}
|
||||
{{ .Parent.Scratch.Set $group slice }}
|
||||
{{ end }}
|
||||
{{- if not (.Parent.Scratch.Get $group) }}
|
||||
{{- .Parent.Scratch.Set $group slice }}
|
||||
{{- end }}
|
||||
|
||||
{{ .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }}
|
||||
{{ else }}
|
||||
{{- .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }}
|
||||
{{- else }}
|
||||
{{ errorf "%q: 'tab' shortcode must be inside 'tabs' shortcode" .Page.Path }}
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
|
@ -1,10 +1,10 @@
|
||||
{{ if .Inner }}{{ end }}
|
||||
{{ $id := .Get 0 }}
|
||||
{{ $group := printf "tabs-%s" $id }}
|
||||
{{- if .Inner }}{{ end }}
|
||||
{{- $id := .Get 0 }}
|
||||
{{- $group := printf "tabs-%s" $id }}
|
||||
|
||||
|
||||
<div class="gblog-tabs">
|
||||
{{ range $index, $tab := .Scratch.Get $group }}
|
||||
{{- range $index, $tab := .Scratch.Get $group }}
|
||||
<input
|
||||
type="radio"
|
||||
class="gblog-tabs__control hidden"
|
||||
@ -18,5 +18,5 @@
|
||||
<div class="gblog-markdown--nested gblog-tabs__content">
|
||||
{{ .Content | $.Page.RenderString }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{- end }}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user