feat(basecamp-project): add markdown to trix converter

- Add markdown_to_trix.py with Markdown→HTML conversion for Basecamp
- Implement is_basecamp_safe() for unsupported feature detection
- Add convert_table_to_lists() for table→list conversion
- Include CLI with --file, --output, and --check modes
- Add comprehensive self-tests for all functions
- Add requirements.txt with markdown dependency
This commit is contained in:
m3tm3re
2026-04-27 09:52:21 +02:00
parent a88e6f9f06
commit 30602ca8c6
2 changed files with 483 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# Markdown to Trix Converter Dependencies
markdown>=3.4.0