From 2650b5b876c37a246f5c7f30240506975b6d0160 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 3 Jun 2026 01:52:35 -0400 Subject: [PATCH] Fixed a bug in help generation. --- i38.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i38.sh b/i38.sh index c518f7e..3e4f0c3 100755 --- a/i38.sh +++ b/i38.sh @@ -1562,7 +1562,7 @@ touch "${i3Path}/customizations" touch "${i3Path}/scratchpad" # Check for markdown or pandoc for converting the welcome document if command -v pandoc &> /dev/null ; then - pandoc -f markdown -t html "I38.md" -so "${i3Path}/I38.html" --metadata title="Welcome to I38" + pandoc -f markdown-citations -t html "I38.md" -so "${i3Path}/I38.html" --metadata title="Welcome to I38" elif command -v markdown &> /dev/null ; then cat << EOF > "${i3Path}/I38.html" @@ -1603,7 +1603,7 @@ else fi textEditorHelp="${textEditor:-no text editor was configured}" if [[ -n "$fileBrowser" ]]; then - fileBrowserHelp="I38 uses ${fileBrowser} for file management. Launch it in Ratpoison mode with the \`f\` key." + fileBrowserHelp="I38 uses ${fileBrowser} for file management. Launch it in Ratpoison mode with the f key." else fileBrowserHelp="No file manager was configured when this help file was generated." fi