10 lines
412 B
Bash
Executable File
10 lines
412 B
Bash
Executable File
#!/bin/sh
|
|
# To install required tools in debian:
|
|
# sudo apt-get install pandoc texlive-latex-base texlive-fonts-recommended texlive-latex-extra
|
|
|
|
pandoc manual.md -o manual.pdf -s --number-sections
|
|
pandoc manual.md -o manual.html -s --number-sections
|
|
|
|
pandoc reference-cfg-format.md -o reference-cfg-format.pdf -s --number-sections
|
|
pandoc reference-cfg-format.md -o reference-cfg-format.html -s --number-sections
|