25 December 2022
You can convert markdown files to pdf files with a package called markdown-pdf.
markdown-pdf
If you have a folder filled with markdown files. You can convert an entire folder with:
npx markdown-pdf filename.md
for i in *.md; do npx markdown-pdf "$i"; done