{{- $scratch := .Page.Scratch.Get "scratch" -}} {{- $content := .Inner -}} {{- $classList := .Get "class" | slice -}} {{- $tag := .Get "tag" | default "div" -}} {{- with .Get "code" -}} {{- /* highlight code content without line number */ -}} {{- $content = highlight $content . "linenos=false" -}} {{- /* delete outer label */ -}} {{- $content = replaceRE `
]*>(?s)(.*)
` "$1" $content -}} {{- /* parsing markdown links */ -}} {{- $content = replaceRE `(]*>)([^<>]*)\[([^<>]+)\]\(([^<>]+)\)([^<>]*)()` "$1$2$6$3$1$5$6" $content -}} {{- /* replace " " to " " and replace "\n" to "
" */ -}} {{- $content = replaceRE ` ` " " $content | replaceRE `(<\w+) ` "$1 " | replaceRE `\n` "
" -}} {{- /* fix "
" location error which is a bug of Typeit HTML parser */ -}} {{- $content = replaceRE `
` "
" $content -}} {{- $classList = $classList | append "highlight" -}} {{- else -}} {{- $content = $content | .Page.RenderString -}} {{- end -}} {{- /* trim the newline */ -}} {{- $content = trim $content "\n" -}} {{- $id := partial "function/id.html" (dict "content" $content "scratch" $scratch) -}} {{- $key := .Get "group" | default $id -}} {{- $group := index ($scratch.Get "typeitMap" | default dict) $key -}} {{- $group = $group | default slice | append $id -}} {{- $scratch.SetInMap "typeitMap" $key $group -}}
{{- printf `<%s id="%s" class="%s">` $tag $id (delimit $classList " ") $tag | safeHTML -}}