diff options
author | Sven Gothel <[email protected]> | 2023-08-14 04:22:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-14 04:22:25 +0200 |
commit | fd623305d90a88fd01dea3dccf6b9fe76b19703f (patch) | |
tree | c5bdaad79e250332f20ff91f14b4f0f7421ad3ee /make | |
parent | 9b825a445c3d2646546306c1815f498406e2f8c3 (diff) |
Bug 1449: Convert manual/index.html to `gfm` (GitHub-Flavored Markdown) using markdown -> manual/index.md and add conversion recipes + make/scripts/md2html_update.sh
Noyte: Additionally edited 'doc/misc/macos_nativelib_dependencies.md`
to include `Use explicit OpenJDK/Temurin JDK `java` executable path`
as a workaround to pass `DYLD_LIBRARY_PATH` to `/usr/bin/java`.
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/md2html_update.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/make/scripts/md2html_update.sh b/make/scripts/md2html_update.sh new file mode 100755 index 0000000..85e237a --- /dev/null +++ b/make/scripts/md2html_update.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +set -x + +sdir=`dirname $(readlink -f $0)` +rdir=$sdir/../.. + +pandoc_md2html_local.sh $rdir/doc/GlueGen_Mapping.md > $rdir/doc/GlueGen_Mapping.html +pandoc_md2html_local.sh $rdir/doc/manual/index.md > $rdir/doc/manual/index.html +pandoc_md2html_local.sh $rdir/doc/misc/macos_nativelib_dependencies.md > $rdir/doc/misc/macos_nativelib_dependencies.html +pandoc_md2html_local.sh $rdir/doc/JogAmpMacOSVersions.md > $rdir/doc/JogAmpMacOSVersions.html |