Change the if...else when deciding engine

This commit is contained in:
Stig-Ørjan Smelror 2024-01-29 17:05:55 +01:00
parent a24eec3624
commit ecb3067e78

5
qsgen2
View File

@ -87,7 +87,7 @@ case ${1} in
_version ${0:t}
;;
help || -h || --help)
_help
_help ${0:t}
;;
esac
@ -124,11 +124,12 @@ elif [[ ${generator} == "markdown" ]]; then
if [[ ! -f /usr/bin/markdown ]]; then
echo "Please install the 'discount' package to use Markdown."
exit
fi
else
# Usage: ${engine} ${1} ${2} - Where 1 is the input file and 2 is the html www_root file and location
if (${debug}) echo "${red}Using the ${generator} engine${end}"
engine=$( /usr/bin/markdown -o ${2} ${1} )
fi
fi
# Define cache files
blog_cache_file="${project_dir}/.blog_cache"