metacolon
v1.1.1
Published
parses RFC 822-style text files with headers and body
Downloads
122
Readme
metacolon
parses RFC 822-style text files with headers and body
title: Hello World
format: markdown
lorem ipsum
dolor sit amet
Getting Started
$ npm install metacolon
let colonParse = require("metacolon");
colonParse("sample.md").then(({ headers, body }) => {
// …
});
Contributing
- ensure Node is installed
npm install
downloads dependenciesnpm test
runs the test suite and checks code for stylistic consistency