LoveIt/layouts/partials/function/fraction.html
Dillon 84d48f37dc
feat(syntax): add fraction syntax (#181)
* feat(syntax): add fraction syntax

* docs: add remind for Hugo extended version
2020-03-18 00:52:36 +08:00

5 lines
201 B
HTML

{{- /* Fraction */ -}}
{{- /* [A]/[B] -> <sup>A</sup>/<sub>B</sub> */ -}}
{{- $REin := `\[(.+?)\]/\[(.+?)\]` -}}
{{- $REout := `<sup>$1</sup>/<sub>$2</sub>` -}}
{{- return replaceRE $REin $REout . -}}