https://github.com/theskumar/pelican-commonmark
Pelican plugin that replaces the markdown reader with one that uses the Python parser for CommonMark
https://github.com/theskumar/pelican-commonmark
Last synced: about 1 year ago
JSON representation
Pelican plugin that replaces the markdown reader with one that uses the Python parser for CommonMark
- Host: GitHub
- URL: https://github.com/theskumar/pelican-commonmark
- Owner: theskumar
- Created: 2015-05-02T20:24:07.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T23:07:49.000Z (over 3 years ago)
- Last Synced: 2025-03-18T14:49:21.058Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CommonMark for Pelican
[](https://travis-ci.org/theskumar/pelican-commonmark) [](https://coveralls.io/r/theskumar/pelican-commonmark)
This reader plugin replaces the markdown reader with one that uses the
[Python parser for CommonMark][1].
It is useful if you want to use the [CommonMark][2] way of parsing markdown
inside non-trivial nested HTML tags. It is not useful if you want to
use the extensions available to the python markdown parser.
## Installation
pip install pelican-commonmark
Add/update the `PLUGINS` variable in your `pelicanconf.py`:
```
PLUGINS = [
...
"pelican_commonmark",
...
]
```
## LICENSE
BSD
[1]: https://pypi.python.org/pypi/CommonMark
[2]: http://commonmark.org