Back to Falco

Markdown Inline

layouts/shortcodes/markdown_inline.html

latest361 B
Original Source

{{ with ( .Get "header" ) }}

{{ . }}

{{ end }} {{ with ( .Get "subheader" ) }}

{{ . }}

{{ end }} {{ $content := os.ReadFile ( .Get "contentPath" ) }} {{ $format := .Get "format" | default "raw" }} {{ with $format }} {{ if eq . "raw" }} {{ $content | markdownify }} {{ else if eq . "code" }} {{ $content | markdownify }} {{ end }} {{ end }}