initial switch to latexmlmath, per #5

This commit is contained in:
Alexander 2025-07-01 19:25:02 -04:00
parent 38d8d44b00
commit 376c0f5f93
8 changed files with 20 additions and 6 deletions

11
math_wrapper.sh Executable file
View file

@ -0,0 +1,11 @@
#! /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