CommonMark compliant Markdown formatter
Project description
mdformat
CommonMark compliant Markdown formatter
Mdformat is an opinionated Markdown formatter that can be used to enforce a consistent style in Markdown files. Mdformat is a Unix-style command-line tool as well as a Python library.
The features/opinions of the formatter include:
- Strip trailing and leading whitespace
- Always use ATX style headings
- Consistent indentation for contents of block quotes and list items
- Reformat reference links as inline links
- Reformat indented code blocks as fenced code blocks
- Separate blocks with a single empty line (an exception being tight lists where the separator is a single newline character)
- End the file in a single newline character
- Use
1.
as the ordered list marker if possible, also for noninitial list items
Mdformat by default will not change word wrapping. The rationale for this is to support techniques like One Sentence Per Line and Semantic Line Breaks.
NOTE: The formatting style produced by mdformat may change in each version. It is recommended to pin mdformat dependency version.
Installing
pip install mdformat
Command line usage
Format files
Format files README.md
and CHANGELOG.md
in place
mdformat README.md CHANGELOG.md
Format .md
files in current working directory recursively
mdformat .
Read Markdown from standard input until EOF
.
Write formatted Markdown to standard output.
mdformat -
Check formatting
mdformat --check README.md CHANGELOG.md
This will not apply any changes to the files. If a file is not properly formatted, the exit code will be non-zero.
Python API usage
Format text
import mdformat
unformatted = "\n\n# A header\n\n"
formatted = mdformat.text(unformatted)
assert formatted == "# A header\n"
Format a file
Format file README.md
in place:
import mdformat
# Input filepath as a string...
mdformat.file("README.md")
# ...or a pathlib.Path object
import pathlib
filepath = pathlib.Path("README.md")
mdformat.file(filepath)
Usage as a pre-commit hook
mdformat
can be used as a pre-commit hook.
Add the following to your project's .pre-commit-config.yaml
to enable this:
- repo: https://github.com/executablebooks/mdformat
rev: 0.1.3 # Use the ref you want to point at
hooks:
- id: mdformat
Code formatter plugins
Mdformat features a plugin system to support formatting of Markdown code blocks where the coding language has been labeled.
For instance, if mdformat-black
plugin is installed in the environment,
mdformat CLI will automatically format Python code blocks with Black.
For stability, mdformat Python API behavior will not change simply due to a plugin being installed. Code formatters will have to be explicitly enabled in addition to being installed:
import mdformat
unformatted = "~~~python\n'''black converts quotes'''\n~~~\n"
# Pass in `codeformatters` here! It is an iterable of coding languages
# that should be formatted
formatted = mdformat.text(unformatted, codeformatters={"python"})
assert formatted == '~~~python\n"""black converts quotes"""\n~~~\n'
Read the contribution guide if you wish to implement a new code formatter plugin.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mdformat-0.1.3.tar.gz
.
File metadata
- Download URL: mdformat-0.1.3.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.6.9 Linux/5.4.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78f45d7ed1ef6f45fce3ecab573c1d009b37657ea011f377be99bc3620f4fb65 |
|
MD5 | 120ab5aa03937bb0d93eb6fb33a1f7b6 |
|
BLAKE2b-256 | 4a273e53f095cb70c943e31f06269be29d2f75f615627b09d83a3e647934a3e7 |
File details
Details for the file mdformat-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: mdformat-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.6.9 Linux/5.4.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70c4f120a505907f192a681bd34169cbc84b7933072d80fb418af8dc7adb8760 |
|
MD5 | 4a576747972be1bd3b1c47df54fe70d9 |
|
BLAKE2b-256 | 73295b19583609a80f2831d73c8fda5ca739cb253c054b5dfa0cb18e1dc8a6c1 |