diff --git a/layouts/partials/function/fontawesome.html b/layouts/partials/function/fontawesome.html
index 270aab5..d3a37ac 100644
--- a/layouts/partials/function/fontawesome.html
+++ b/layouts/partials/function/fontawesome.html
@@ -1,5 +1,14 @@
{{- /* Font Awesome */ -}}
{{- /* :(far fa-circle): -> */ -}}
-{{- $REin := `:\(([\w- ]+?)\):` -}}
-{{- $REout := `` -}}
-{{- return replaceRE $REin $REout . -}}
+
+{{- $REin := ` (:\([\w- ]+?\):)` -}}
+{{- $REout := ` $1` -}}
+{{- $content := replaceRE $REin $REout . -}}
+
+{{- $REin = `(:\([\w- ]+?\):) ` -}}
+{{- $REout = `$1 ` -}}
+{{- $content = replaceRE $REin $REout . -}}
+
+{{- $REin = `:\(([\w- ]+?)\):` -}}
+{{- $REout = `` -}}
+{{- return replaceRE $REin $REout $content -}}