Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fusepilot/wintersmith-jade-content
- Owner: fusepilot
- Created: 2015-07-25T11:41:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-25T11:41:22.000Z (over 9 years ago)
- Last Synced: 2024-04-14T04:51:21.007Z (9 months ago)
- Language: CSS
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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/"
]
}