Note
This plugin's functionality has been integrated into mdformat-space-control, which combines EditorConfig support with tight list formatting. Consider using mdformat-space-control for new projects.
An mdformat plugin that applies EditorConfig indentation settings to Markdown formatting.
mdformat uses opinionated defaults for indentation (2 spaces). This plugin allows you to configure indentation via .editorconfig files, making mdformat respect your project's or personal indentation preferences.
pip install mdformat-editorconfigOr with pipx for command-line usage:
pipx install mdformat
pipx inject mdformat mdformat-editorconfigCreate an .editorconfig file in your project (or home directory):
# .editorconfig
root = true
[*.md]
indent_style = space
indent_size = 4Then format your Markdown files as usual:
mdformat your-file.mdWith the above .editorconfig, nested lists will use 4-space indentation:
Before:
- Item 1
- Nested item
- Item 2After:
- Item 1
- Nested item
- Item 2| Property | Status | Notes |
|---|---|---|
indent_style |
✅ Supported | Plugin applies space/tab indentation to lists |
indent_size |
✅ Supported | Plugin applies configured indent width to lists |
trim_trailing_whitespace |
✅ Always enabled | mdformat always trims trailing whitespace by design |
insert_final_newline |
✅ Always enabled | mdformat always adds final newline by design |
end_of_line |
⚪ See mdformat | Use mdformat's --end-of-line CLI option (lf, crlf) |
tab_width |
⚪ Inherited | Used when indent_size = tab |
charset |
⚪ N/A | File encoding is handled by editors, not formatters |
Note: mdformat has opinionated defaults that align well with typical .editorconfig settings. The formatter always trims trailing whitespace and ensures files end with a newline—these behaviors cannot be disabled.
The plugin overrides mdformat's list renderers to apply indentation settings from .editorconfig files. It:
- Looks up
.editorconfigsettings based on the current working directory - Reads
indent_styleandindent_sizeproperties - Applies the configured indentation to list continuation lines and nested content
When using mdformat from the command line, the plugin looks up .editorconfig settings based on your current working directory. This means:
- Run mdformat from your project root to pick up project-level
.editorconfig - A global
~/.editorconfig(withroot = true) will apply to all mdformat calls within your home directory
# Run from project root to use project's .editorconfig
cd /path/to/project
mdformat docs/*.mdDue to mdformat's plugin architecture, the plugin cannot determine the actual file path being formatted. Instead, it uses the current working directory for .editorconfig lookup. This works well for the common case of running mdformat from a project root, but may not pick up the correct settings if you format files from a different directory.
When using the Python API directly, you can explicitly set the file context for more precise .editorconfig lookup:
import mdformat
from mdformat_editorconfig import set_current_file
# Set the file context for editorconfig lookup
set_current_file("/path/to/your/file.md")
try:
result = mdformat.text(markdown_text, extensions={"editorconfig"})
finally:
set_current_file(None)This plugin currently handles indentation for:
- Bullet lists (unordered lists)
- Ordered lists
Code blocks and blockquotes follow CommonMark standard formatting (4-space indentation for indented code blocks).
# Clone the repository
git clone https://github.com/jdmonaco/mdformat-editorconfig.git
cd mdformat-editorconfig
# Install development environment with uv
uv sync# Run all tests
uv run pytest
# Run with coverage
uv run pytest --cov=mdformat_editorconfig
# Run tests verbosely
uv run pytest -vMIT - see LICENSE file for details.