feat: implement configurable markdown parser options#299
Merged
rochacbruno merged 6 commits intomainfrom Jul 21, 2025
Merged
Conversation
Add support for configuring markdown parser options via marmite.yaml configuration file. All comrak parser options are now configurable including render, parse, and extension settings. Key features: - New ParserOptions struct with render, parse, and extension options - Backward compatible - sites without config use default settings - Partial configuration support - only specify options to change - Security enhancement - can disable unsafe HTML rendering - Fine-grained control over markdown features Resolves #298 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
The get_html function is kept for backward compatibility as a public API, even though internally we now use get_html_with_options.
Add configurable support for wikilinks with title after pipe syntax from Comrak ExtensionOptions. This allows users to enable/disable this specific wikilink variant independently from title before pipe. - Add wikilinks_title_after_pipe field to ExtensionOptions - Update parser to use the new option - Add documentation for the new option
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
marmite.yamlconfiguration fileImplementation Details
ParserOptionsstruct with render, parse, and extension optionsmarkdown_parserfield toMarmiteconfig structget_htmlfunction to use configurable options while maintaining backward compatibilityTest plan
Resolves #298
Closes #195
🤖 Generated with Claude Code