mirror of
https://git.acl.cool/al/pages.git
synced 2025-12-14 19:51:16 -05:00
11 lines
No EOL
293 B
Bash
Executable file
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 |