An mdformat plugin that adds definition list support using markdown-it-deflist. Version 0.1.4, last updated 2023-01-26. Requires Python >=3.10.
pip install mdformat-deflistNo compatibility data collected yet for this library.
Basic usage: import mdformat and pass extensions=['deflist'] to enable the plugin.
Use `mdformat.file('file.md', extensions=['deflist'])` or `mdformat --extensions deflist file.md`.Upgrade Python to 3.10 or later.
Follow the markdown-it-deflist syntax: colon-prefixed terms followed by indented definitions.
Simply install mdformat-deflist and use mdformat with the 'deflist' extension: `mdformat.file('file.md', extensions=['deflist'])`.Run `pip install mdformat-deflist` and ensure it's in your environment.
Ensure terms are on a line starting with colon and space, and definitions are indented by at least one space on subsequent lines. Example: Term 1 : Definition 1 Term 2 : Definition 2
No dependency data recorded yet.