- 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>
5 lines
179 B
Bash
Executable File
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" "$@"
|