This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
430 B
HTML
Raw Permalink Normal View History

2023-10-12 14:01:05 +02:00
{{- $content := .Inner | .Page.RenderString -}}
{{- $id := dict "Scratch" .Page.Scratch | partial "function/id.html" -}}
{{- $tag := .Get 1 | default "div" -}}
{{- printf `<%v id="%v">%v</%v>` $tag $id $content $tag | safeHTML -}}
{{- $style := .Get 0 | printf "#%v{%v}" $id -}}
{{- $styleArr := (.Page.Scratch.Get "this").styleArr | default slice -}}
{{- $styleArr | append $style | .Page.Scratch.SetInMap "this" "styleArr" -}}