refactor: move into src

This commit is contained in:
Oliver Davies 2023-10-18 00:11:16 +02:00
parent 675e89e9d1
commit 51c5f5759d
404 changed files with 2 additions and 2 deletions

4
run
View file

@ -26,14 +26,14 @@ function help {
function pdf:generate {
DIRECTORY_NAME=$1
shift 1
pushd "${DIRECTORY_NAME}"
pushd "src/${DIRECTORY_NAME}"
rst2pdf "${RST_FILENAME}" \
--break-level 1 \
-e preprocess \
--fit-background-mode scale \
--font-path ../fonts \
--output "../dist/${DIRECTORY_NAME}.pdf" \
--output "../../dist/${DIRECTORY_NAME}.pdf" \
--stylesheets ../styles/style-light,vs \
"${@}"