
Quantalogic Markdown Editor
Provides safe editing of Markdown documents through section-based operations like inserting, updating, and moving content. Includes validation, transaction safety, and rollback capabilities to maintain document integrity.
What it does
- Load and analyze Markdown documents from file paths
- Insert sections at specific positions
- Update existing section content
- Delete sections by ID or heading
- Move sections to reorder document structure
- Validate document structure with configurable strictness
Best for
Tools (10)
Load and analyze a Markdown document from a file path. Args: document_path: Path to the Markdown file (supports absolute, relative, and ~ expansion) validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"
Insert a new section at a specified location. The document will be saved after the operation if successful and auto_save is True.
Delete a section by ID or heading. The document will be saved after the operation if successful and auto_save is True.
Update the content of an existing section. The document will be saved after the operation if successful and auto_save is True.
Get a specific section by ID. Args: document_path: Path to the Markdown file section_id: The section ID to retrieve validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"