Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fusepilot/wintersmith-jade-content

Write Wintersmith content in Jade
https://github.com/fusepilot/wintersmith-jade-content

Last synced: about 1 month ago
JSON representation

Write Wintersmith content in Jade

Awesome Lists containing this project

README

        

# wintersmith-pandoc

[Pandoc](http://johnmacfarlane.net/pandoc/) plugin for [wintersmith](https://github.com/jnordberg/wintersmith). Renders Markdown content using Pandoc instead of the default, [marked](https://github.com/chjj/marked). While slower to render, this enables lots of Markdown extras such as footnotes, tables, strikethrough, LaTeX math (via [MathML](http://www.mathjax.com)), and smart punctuation.

### install:

npm install wintersmith-pandoc

then add `./node_modules/wintersmith-pandoc/` to `config.json` like:

{
"locals": {
"url": "http://localhost:8080",
"name": "The Wintersmith's blog",
"owner": "The Wintersmith",
"description": "-32°C ain't no problems!",
"index_articles": 3
},
"plugins": [
"./node_modules/wintersmith-pandoc/"
]
}