Files
md2pdf/md2pdf
T
sebastianandClaude Opus 4.5 c93974fd3d Initial commit: md2pdf markdown to PDF converter
- Python script with weasyprint for high-quality PDF output
- Wrapper script for easy execution with bundled venv
- Multiple styles: default, minimal, dark, elegant
- Supports single file or directory conversion

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 14:28:59 +02:00

5 lines
179 B
Bash
Executable File

#!/bin/bash
# Wrapper script to run md2pdf.py with its virtual environment
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
"$SCRIPT_DIR/.venv/bin/python" "$SCRIPT_DIR/md2pdf.py" "$@"