40d157895c
* Add PANDOC_EXTENSIONS configuration variable, allowing one to enable or disable Pandoc's markdown extensions individually. * Remove dependency on pypandoc. * Don't change the working directory. * More efficient metadata extraction.
53 lines
1.1 KiB
Markdown
53 lines
1.1 KiB
Markdown
pandoc_reader
|
|
=============
|
|
|
|
A pandoc [markdown] reader plugin for [pelican]
|
|
|
|
|
|
Requirements
|
|
------------
|
|
|
|
- [pandoc] in $PATH
|
|
|
|
|
|
Installation
|
|
------------
|
|
|
|
Instructions for installation of pelican plugins can be obtained from the [pelican plugin manual](https://github.com/getpelican/pelican-plugins/blob/master/Readme.rst).
|
|
|
|
|
|
Configuration
|
|
-------------
|
|
|
|
Additional command line parameters can be passed to pandoc via the PANDOC_ARGS parameter.
|
|
|
|
PANDOC_ARGS = [
|
|
'--mathjax',
|
|
'--smart',
|
|
'--toc',
|
|
'--toc-depth=2',
|
|
'--number-sections',
|
|
]
|
|
|
|
Pandoc's markdown extensions can be enabled or disabled via the
|
|
PANDOC_EXTENSIONS parameter.
|
|
|
|
PANDOC_EXTENSIONS = [
|
|
'+hard_line_breaks',
|
|
'-citations'
|
|
]
|
|
|
|
Contributing
|
|
------------
|
|
|
|
1. Fork it
|
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
5. Create new Pull Request
|
|
|
|
|
|
[markdown]: http://daringfireball.net/projects/markdown/
|
|
[pandoc]: http://johnmacfarlane.net/pandoc/
|
|
[pelican]: http://getpelican.com
|