{{- $content := .Inner | .Page.RenderString -}} {{- $id := dict "content" $content "scratch" .Page.Scratch | partial "function/id.html" -}} {{- $tag := .Get 1 | default "div" -}} {{- printf `<%s id="%s">%s` $tag $id $content $tag | safeHTML -}} {{- $style := .Get 0 | printf "#%s{%s}" $id -}} {{- $path := printf "style/%s/%s" (md5 .Page.RelPermalink) $id -}} {{- $res := resources.FromString (printf "%s.scss" $path) $style -}} {{- $res = $res | toCSS (dict "targetPath" (printf "%s.css" $path)) -}} {{- $styleArr := (.Page.Scratch.Get "this").styleArr | default slice -}} {{- $styleArr | append $res.Content | .Page.Scratch.SetInMap "this" "styleArr" -}}