Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 16 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T23:07:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T21:53:54.646Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 9
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CommonMark for Pelican
[![Build Status](https://travis-ci.org/theskumar/pelican-commonmark.svg)](https://travis-ci.org/theskumar/pelican-commonmark) [![Coverage Status](https://coveralls.io/repos/theskumar/pelican-commonmark/badge.svg)](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