pages/math_wrapper.sh
2025-07-01 19:25:02 -04:00

11 lines
No EOL
293 B
Bash
Executable file

#! /usr/bin/env sh
if [ $# -lt 1 ]; then
echo -n '<strong>BLOCK MATH ERROR</strong>'
elif [[ "$1" == "display" ]]; then
echo -n '<p>'
latexmlmath --preload=amsmath.sty --preload=amssymb.sty -
echo -n '</p>'
else
latexmlmath --preload=amsmath.sty --preload=amssymb.sty -
fi