An mdformat plugin for ensuring that yaml front-matter is respected.
Many tools (such as jekyll) use yaml front matter for automation purposes.
mdformat-frontmatter only supports yaml. For example:
---
test: yaml
---
# This looks okay
For some markdown code.Frontmatter can only be at the first line or two of the code.
# This is not
---
test: yaml
---Note: that at this stage this plugin is not that sophisticated. The principle objective is to allow properly formed yaml header blocks to pass through. Incorrectly formed blocks may result in strange behaviour.
Python 3.10 or higher.
This package was built from the template provided by executable books and customized (specifically to separate content PR's from the release cycle). This package uses hatch as the build engine, and tox for test automation.
To install development dependencies:
pip install -e ".[dev,test]"To run the tests:
toxand with test coverage:
tox -e py312-covThe easiest way to write tests, is to edit tests/fixtures.md
To run the code formatting and style checks:
tox -e py312-pre-commitor directly
pip install pre-commit
pre-commit run --allTo run the pre-commit hook test:
tox -e py312-hookReleases are fully automated using python-semantic-release and conventional commits:
- Merge PRs with conventional commit titles (e.g.,
fix:,feat:,chore:) - The CI workflow automatically analyzes commits, determines version bump, updates CHANGELOG, creates a tag, and publishes to PyPI
- Artifacts are signed with Sigstore for supply chain security
The release workflow uses PyPI Trusted Publishing (OIDC) and generates attestations for all published packages.