mirror of
https://github.com/imfing/hextra.git
synced 2025-06-20 04:41:50 -04:00
chore: add inline shortcode icon
* enable `enableInlineShortcodes` in config * add markdown icon * update hugo stats json * clean up mermaid template
This commit is contained in:
@ -2,4 +2,3 @@
|
||||
{{- .Inner | safeHTML -}}
|
||||
</pre>
|
||||
{{- .Page.Store.Set "hasMermaid" true -}}
|
||||
{{ warnf .Page.RelPermalink }}
|
||||
|
12
layouts/shortcodes/icon.html
Normal file
12
layouts/shortcodes/icon.html
Normal file
@ -0,0 +1,12 @@
|
||||
{{- $icon := index site.Data.icons (.Get 0) -}}
|
||||
{{- $attributes := "height=1em"}}
|
||||
|
||||
{{- if not $icon -}}
|
||||
{{ errorf "icon %q not found" (.Get 0) }}
|
||||
{{- end -}}
|
||||
|
||||
{{- $icon = replaceRE "<svg" (printf "<svg %s" $attributes) $icon -}}
|
||||
|
||||
<span class="inline-block align-text-bottom icon">
|
||||
{{- $icon | safeHTML -}}
|
||||
</span>
|
Reference in New Issue
Block a user