Skip to main content

An mdformat plugin for applying .editorconfig indentation settings.

Project description

mdformat-editorconfig

Build Status PyPI version

An mdformat plugin that applies EditorConfig indentation settings to Markdown formatting.

Motivation

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.

Installation

pip install mdformat-editorconfig

Or with pipx for command-line usage:

pipx install mdformat
pipx inject mdformat mdformat-editorconfig

Usage

Create an .editorconfig file in your project (or home directory):

# .editorconfig
root = true

[*.md]
indent_style = space
indent_size = 4

Then format your Markdown files as usual:

mdformat your-file.md

Example

With the above .editorconfig, nested lists will use 4-space indentation:

Before:

- Item 1
  - Nested item
- Item 2

After:

- Item 1
    - Nested item
- Item 2

EditorConfig Property Compatibility

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.

How It Works

The plugin overrides mdformat's list renderers to apply indentation settings from .editorconfig files. It:

  1. Looks up .editorconfig settings based on the current working directory
  2. Reads indent_style and indent_size properties
  3. Applies the configured indentation to list continuation lines and nested content

CLI Usage

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 (with root = 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/*.md

Limitation

Due 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.

Python API

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)

Scope

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).

Development

Setup

# Clone the repository
git clone https://github.com/jdmonaco/mdformat-editorconfig.git
cd mdformat-editorconfig

# Install development environment with uv
uv sync

Running Tests

# Run all tests
uv run pytest

# Run with coverage
uv run pytest --cov=mdformat_editorconfig

# Run tests verbosely
uv run pytest -v

License

MIT - see LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mdformat_editorconfig-0.1.2.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mdformat_editorconfig-0.1.2-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file mdformat_editorconfig-0.1.2.tar.gz.

File metadata

  • Download URL: mdformat_editorconfig-0.1.2.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.5

File hashes

Hashes for mdformat_editorconfig-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6eca249c514cc94b21ef7a3f7e3edb537bec72d4ee8f5ae6747c5de4e7f7f410
MD5 3fe5a4f6895d707a868248bd906603a7
BLAKE2b-256 1bf0ee290021327cdef76144f50b4e26dfd460d1f875096e2c7494b76910f6d9

See more details on using hashes here.

File details

Details for the file mdformat_editorconfig-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for mdformat_editorconfig-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2cc8b4d4c1b7190a5365ba2ad81872f8a512315d9d4f3e4079f11d1892186513
MD5 a3dbb74424d9170c50ae19b577cc76b3
BLAKE2b-256 d0c96a61802de674e0f1fa7fdec521ad5dc6468cf94083bac229253f73189cd1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page