From md-export
Export markdown file(s) to styled dark-theme PDF. Use when the user asks to "export to PDF", "convert markdown to PDF", "generate PDF", "make a PDF from markdown", or "export md".
npx claudepluginhub lespaceman/athena-workflow-marketplace --plugin md-exportThis skill is limited to using the following tools:
Export the specified markdown file(s) to a clean, dark-themed PDF.
Converts markdown files, globs, or directories to professional PDFs with Obsidian-style preview using pandoc and wkhtmltopdf. Supports custom output directories and auto-installs tools.
Generates styled PDF books from directories of ordered markdown chapters using pandoc and weasyprint, with TOC, page numbers, and resolved inter-chapter links.
Converts Markdown files to professional PDFs using reportlab (lightweight) or weasyprint (full CSS). Manages dependencies, custom styles, test mode, and auto-activates on pdf or md-to-pdf triggers.
Share bugs, ideas, or general feedback.
Export the specified markdown file(s) to a clean, dark-themed PDF.
Resolve the path(s) from $ARGUMENTS. If it is a glob pattern, use the Glob tool to expand it. If no argument is provided, ask the user which file to export.
Resolve the plugin root:
ATHENA_PLUGIN_ROOT is set, use it.${CLAUDE_SKILL_DIR} and go up two directories to reach the plugin root.SKILL.md file.For each markdown file, run the generation script:
node "<plugin-root>/scripts/generate-pdf.mjs" "<absolute-path-to-md-file>"
The script will:
self-correction-report.md → "Self Correction Report")Report the result to the user — list each PDF created and its path.
If the script reports an error about puppeteer-core not being installed, run:
cd "<plugin-root>" && npm install puppeteer-core
Then retry the export.