2021-02-18 21:44:01 +01:00
|
|
|
{{- /* Font Awesome */ -}}
|
2022-08-14 19:01:21 +02:00
|
|
|
{{- /* :(far fa-circle): -> <i class="far fa-circle fa-fw" aria-hidden="true"></i> */ -}}
|
2021-02-18 21:44:01 +01:00
|
|
|
|
|
|
|
{{- $REin := ` (:\([\w- ]+?\):)` -}}
|
|
|
|
{{- $REout := ` $1` -}}
|
|
|
|
{{- $content := replaceRE $REin $REout . -}}
|
|
|
|
|
|
|
|
{{- $REin = `(:\([\w- ]+?\):) ` -}}
|
|
|
|
{{- $REout = `$1 ` -}}
|
|
|
|
{{- $content = replaceRE $REin $REout . -}}
|
|
|
|
|
|
|
|
{{- $REin = `:\(([\w- ]+?)\):` -}}
|
2022-08-14 19:01:21 +02:00
|
|
|
{{- $REout = `<i class="$1" aria-hidden="true"></i>` -}}
|
2021-02-18 21:44:01 +01:00
|
|
|
{{- return replaceRE $REin $REout $content -}}
|