summaryrefslogtreecommitdiffstats
path: root/gen.sh
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2025-02-24 18:12:56 +0000
committerTyler Davis <tyler@gluecode.net>2025-02-24 18:12:56 +0000
commit6d8df8baaa30a6b43f933d32b7c4422275423737 (patch)
treefcef121ed6b9ddf512aa25fcfaddda3ca0471dc5 /gen.sh
parentb566bf5c835e04e745dabb6bd1232ac8a09873ef (diff)
downloadjournal-6d8df8baaa30a6b43f933d32b7c4422275423737.tar.gz
journal-6d8df8baaa30a6b43f933d32b7c4422275423737.zip
gen: remove cmark
Diffstat (limited to 'gen.sh')
-rwxr-xr-xgen.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/gen.sh b/gen.sh
index 44f0bdf..d2cf21c 100755
--- a/gen.sh
+++ b/gen.sh
@@ -4,9 +4,6 @@ WORKDIR=$PWD
OUTDIR=/var/www/blog/
verbose=0 # Variables to be evaluated as shell arithmetic should be initialized to a default or validated beforehand.
-if [ ! "$(command -v cmark)" ]; then
- echo "cmark not installed in $PATH"
-fi
if [ ! "$(command -v lowdown)" ]; then
echo "lowdown not installed in $PATH"
fi
@@ -112,7 +109,6 @@ for m in $MDLIST; do
esac
echo $HEADER > "${OUTPATH}"
- #cmark --safe --validate-utf8 -t html --width 80 $m >> "${OUTPATH}"
lowdown -thtml --out-no-smarty $m >> "${OUTPATH}"
echo $FOOTER >> "${OUTPATH}"