generator md: Try Discount markdown

This commit is contained in:
Stig-Ørjan Smelror 2024-02-02 07:52:31 +01:00
parent a1da086ef4
commit 476dff8dec

6
qsgen2
View File

@ -153,10 +153,10 @@ elif [[ ${generator} == "markdown" ]]; then
else
# Usage: ${engine} ${1} - Where 1 is the file you want parsed
function engine() {
local command="/usr/bin/markdown-it"
local c-opts=""
local command="/usr/bin/markdown"
local c-opts="-d -n -s"
command c-opts "$1" > "$1"
command c-opts "${1}" > "${1}"
}
export file_ext=md
fi