You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
390 B
16 lines
390 B
#!/bin/bash
|
|
#
|
|
# sudo apt install wkhtmltopdf pandoc
|
|
|
|
LCDIMG="../../bin/gen_lcd_screen.sh ../../images"
|
|
|
|
${LCDIMG} " MicroDexed" " User Manual" images/00_MD_User_Manual.jpg
|
|
|
|
pandoc MicroDexed-User_Manual.md \
|
|
-V 'geometry:a4paper' \
|
|
-V 'geometry:margin=2cm' \
|
|
-V 'fontfamily:dejavu' \
|
|
-V 'fontsize:16pt' \
|
|
-V 'lang=de-DE' \
|
|
--number-sections \
|
|
-t html5 -o MicroDexed-User_Manual.pdf
|
|
|