Common Workflows
README export
markprint README.md README.pdf --theme github
Report export
markprint report.md report.pdf --profile report --theme nord --toc --page-numbers
Resume export
markprint resume.md resume.pdf --profile resume --theme resume
Batch export
markprint batch docs/*.md --out-dir dist/pdf --theme github
Multi-file manual
markprint compile docs/intro.md docs/install.md docs/api.md --output manual.pdf --profile book --toc
Generated Markdown from Python
from markprint import render_pdf
markdown = "# Daily Report
Generated by a script."
render_pdf(markdown=markdown, output="daily-report.pdf")