9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
docker run --rm -v "$(pwd):/data" --user $(id -u):$(id -g) \
|
|
fpod/pandoc-weasyprint \
|
|
akt*/*.md \
|
|
--pdf-engine=weasyprint \
|
|
--css=/data/style.css \
|
|
-o /data/buch.pdf
|