1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-04-06 19:12:26 +02:00

Use XeLaTeX and Exit on empty selection

This commit is contained in:
Ryan Greenup 2020-07-16 22:42:40 +10:00
parent c2de223d78
commit 40ac5b565b

View File

@ -254,7 +254,7 @@ CadmusExport () {
;;
md) shift; pandocExport md && exit 0
;;
pdf) shift; pandocExport pdf && exit 0
pdf) shift; pandocExport pdf --pdf-engine=xelatex && exit 0
;;
html) shift; pandocExport html --mathml --self-contained -c "${script_dir}"'/resources/pandoc.css' && exit 0
;;
@ -280,7 +280,7 @@ pandocExport () { # $1 is extension; $2+ are options for pandoc
else
FILEPATH=$("${script_dir}/NoteFind.sh" "${NOTES_DIR}")
fi
FILE="$(basename ${FILEPATH})"
[[ -f "${FILEPATH}" ]] && FILE="$(basename ${FILEPATH})" || exit 0
FILEOUT="$(echo ${FILE} | cut -f 1 -d '.').${1}"
shift
cd "$(echo "${FILEPATH}" | xargs realpath | xargs dirname)"