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.
12 lines
292 B
12 lines
292 B
#!/bin/bash
|
|
#
|
|
# sudo apt install wkhtmltopdf pandoc
|
|
|
|
LCDIMG="../../bin/gen_lcd_screen.sh ../../images"
|
|
|
|
${LCDIMG} " MicroDexed" " Build Manual" images/00_MD_Build_Manual.jpg
|
|
|
|
pandoc MicroDexed-Build_Manual.md \
|
|
--number-sections \
|
|
-fmarkdown-implicit_figures \
|
|
MicroDexed-Build_Manual.pdf
|
|
|