python-markdown-it-py
Port variant py39
Summary Port of Markdown-it, markdown done right (3.9)
Package version 2.1.0
Homepage No known homepage
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py310
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 24 SEP 2022, 00:03:08 UTC
Port created 24 SEP 2022, 00:03:08 UTC
Subpackage Descriptions
single # markdown-it-py [![Github-CI][github-ci]][github-link] [![Coverage Status][codecov-badge]][codecov-link] [![PyPI][pypi-badge]][pypi-link] [![Conda][conda-badge]][conda-link] [![Code style: black][black-badge]][black-link] [![PyPI - Downloads][install-badge]][install-link] > Markdown parser done right. - Follows the __[CommonMark spec]__ for baseline parsing - Configurable syntax: you can add new rules and even replace existing ones. - Pluggable: Adds syntax extensions to extend the parser (see the [plugin list][md-plugins]). - High speed (see our [benchmarking tests][md-performance]) - [Safe by default][md-security] This is a Python port of [markdown-it], and some of its associated plugins. For more details see: . For details on [markdown-it] itself, see: - The __[Live demo]__ - [The markdown-it README][markdown-it-readme] ## Installation ```bash conda install -c conda-forge markdown-it-py ` or `bash pip install markdown-it-py[plugins] ` or with extras `bash conda install -c conda-forge markdown-it-py linkify-it-py mdit-py-plugins pip install markdown-it-py[linkify,plugins] ``` ## Usage ### Python API Usage Render markdown to HTML with markdown-it-py and a custom configuration with and without plugins and features: ```python from markdown_it import MarkdownIt from mdit_py_plugins.front_matter import front_matter_plugin from mdit_py_plugins.footnote import footnote_plugin md = ( MarkdownIt() .use(front_matter_plugin) .use(footnote_plugin) .disable('image') .enable('table') ) text = (""" --- a: 1 --- a | b - | - 1 | 2 A footnote [^1] [^1]: some details """) tokens = md.parse(text) html_text = md.render(text) ## To export the html to a file, uncomment the lines below: # from pathlib import Path # Path("output.html").write_text(html_text) ``` ### Command-line Usage Render markdown to HTML with markdown-it-py from the command-line: ```console usage: markdown-it [-h] [-v] [filenames [filenames ...]] Parse one or more markdown files, convert each to HTML, and print to stdout positional arguments: filenames specify an optional list of files to convert optional arguments:
Configuration Switches (platform-specific settings discarded)
PY310 OFF Build using Python 3.10 PY39 ON Build using Python 3.9
Package Dependencies by Type
Build (only) python-pip:single:py39
autoselect-python:single:standard
Build and Runtime python39:single:standard
Runtime (only) python-mdurl:single:py39
Download groups
main mirror://PYPIWHL/f9/3f/ecd1b708973b9a3e4574b43cffc1ce8eb98696da34f1a1c44a68c3c0d737
Distribution File Information
93de681e5c021a432c63147656fe21790bc01231e0cd2da73626f1aa3ac0fe27 84544 markdown_it_py-2.1.0-py3-none-any.whl
Ports that require python-markdown-it-py:py39
python-mdit-py-plugins:py39 Collection of plugins for markdown-it-py (3.9)
python-myst-parser:py39 Extended commonmark compliant parser (3.9)