Create PDFs from Markdown files.
$ python3 md-to-pdf.py -h
usage: md-to-pdf.py [-h] -i INPUT [-o OUTPUT]
Convert Markdown to PDF.
options:
-h, --help show this help message and exit
-i, --input INPUT Input Markdown file
-o, --output OUTPUT Output PDF file (optional)
python3 md_to_pdf.py -i input.md -o output.pdfgit clone https://github.com/nchgroup/md-to-pdf
cd md-to-pdf
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt