added markdown.tab_length config option

This commit is contained in:
Daniel Fichtinger 2025-07-05 16:14:20 -04:00
parent 99ad674f51
commit 85fa619828
2 changed files with 8 additions and 2 deletions

View file

@ -38,6 +38,7 @@ class HighlightingConfig:
@dataclass
class MarkdownConfig:
image_labels: bool = True
tab_length: int = 2
syntax_highlighting: HighlightingConfig = field(
default_factory=HighlightingConfig
)