Files
profile/themes/keepit/layouts/partials/function/fraction.html
Spencer Pincott 97737ca1ae Initial commit
2024-07-15 22:20:13 -04:00

6 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 . -}}