CODEBASE: Generate display data for math notation at built time and remove runtime mathjax dependency (#2447)

This commit is contained in:
catloversg
2026-01-18 05:41:24 +07:00
committed by GitHub
parent be16b2a375
commit c8e3eb2050
25 changed files with 910 additions and 584 deletions

View File

@@ -13,12 +13,16 @@ rm input/bitburner.api.json && rm -r input
echo ""
echo "Bundling ingame documentation..."
node tools/bundle-doc/index.js
node tools/bundle-doc/index.mjs
echo ""
echo "Add generated docs to git..."
# This git add is needed due to documenter using wrong line endings. Console spam discarded.
git add markdown/ 2> /dev/null && git add tsdoc-metadata.json 2> /dev/null
echo ""
echo "Generate math notation output..."
node tools/bundle-doc/generate-math-notation-output.mjs
echo ""
echo "Documentation build completed."