mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
c890f61359
http://fixit.lruihao.cn/documentation/content-management/markdown-syntax/extended/#color-preview
25 lines
656 B
HTML
25 lines
656 B
HTML
{{- $content := .Content -}}
|
|
|
|
{{- if $content -}}
|
|
|
|
{{- if .Ruby -}}
|
|
{{- $content = partial "function/ruby.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- if .Fraction -}}
|
|
{{- $content = partial "function/fraction.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- if .Fontawesome -}}
|
|
{{- $content = partial "function/fontawesome.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- $content = partial "function/task-lists.html" $content -}}
|
|
{{- $content = partial "function/marked-text.html" $content -}}
|
|
{{- $content = partial "function/color-preview.html" $content -}}
|
|
{{- $content = partial "function/escape.html" $content -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- return $content -}}
|