Beginn Kapitel 7

This commit is contained in:
2026-03-01 11:38:19 +01:00
parent 7c48349c52
commit 5f5cc3ccb4
3 changed files with 7 additions and 3 deletions

3
Jenkinsfile vendored
View File

@@ -3,8 +3,7 @@ pipeline {
stages {
stage('generate epub') {
steps {
sh 'pandoc --toc --toc-depth=1 --epub-metadata=metadata.yaml --css=book.css -o myebook.epub'
sh 'pandoc --css book.css --toc -N -o build/output.epub src/title.txt src/*.md'
sh 'pandoc --toc --toc-depth=1 --epub-metadata=metadata.yaml --css=book.css -o myebook.epub --css book.css --toc -N -o build/output.epub src/title.txt src/*.md'
}
}
stage('deploy book') {