2020-02-21 17:34:44 +01:00
|
|
|
{{- /* Font Awesome */ -}}
|
2022-05-06 19:54:31 +02:00
|
|
|
{{- /* :(far fa-circle): -> <i class="far fa-circle fa-fw" aria-hidden="true"></i> */ -}}
|
2020-03-17 04:03:58 +01:00
|
|
|
|
|
|
|
{{- $REin := ` (:\([\w- ]+?\):)` -}}
|
|
|
|
{{- $REout := ` $1` -}}
|
|
|
|
{{- $content := replaceRE $REin $REout . -}}
|
|
|
|
|
|
|
|
{{- $REin = `(:\([\w- ]+?\):) ` -}}
|
|
|
|
{{- $REout = `$1 ` -}}
|
|
|
|
{{- $content = replaceRE $REin $REout . -}}
|
|
|
|
|
|
|
|
{{- $REin = `:\(([\w- ]+?)\):` -}}
|
2022-05-06 19:54:31 +02:00
|
|
|
{{- $REout = `<i class="$1" aria-hidden="true"></i>` -}}
|
2020-03-17 04:03:58 +01:00
|
|
|
{{- return replaceRE $REin $REout $content -}}
|