1.0.2 • Published 11 years ago

mdrender v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
11 years ago

mdrender

Render a markdown file with optional JSON frontmatter.

Example

Rendering this file (file.md):

{{{
  "layout": "article",
  "tags": ["some", "nice", "tags"]
}}}

# My Article

It's great.

Use mdrender, passing the path and a callback.

var mdrender = require('mdrender');

mdrender('/path/to/file.md', function (err, data) {
  . . .
});

Data looks like:

{
  title: "My Article",
  layout: "article",
  attributes: {
    tags: ["some", "nice", "tags"]
  },
  html: "<h1>My Article</h1>\n<p>It's great.</p>",
  markdown: "# My Article\n\nIt's great."
}

License

MIT