repartee
v0.2.0
Published
Markdown + metadata parser
Downloads
3
Readme
Repartee
A Markdown + metadata parser
Turn this:
title: Heaven and Hell
date: 1999-02-19
> Also, you'll find a pair of safety glasses and some earplugs under your seats. Please feel free to use them.
into this:
{
meta: {
title: 'Heaven and Hell',
date: '1999-02-19'
},
body: '<blockquote>\n<p>Also, you’ll find a pair of safety glasses and some earplugs under your seats. Please feel free to use them.</p>\n</blockquote>\n'
}
Metadata
Some metadata keys have special behavior:
| key | behavior |
| date
| Transforms a string that can be parsed by the Date
constructor into a native Date. |