docmatter

Battle tested SSG front matter parser. Extracted from DocPad. Delimiter lines have 3+ of the same character (such as /***
and ***/
) allowing front matters to work with the syntax highlighting of your code editor. Supports custom parsers, e.g. --- cson
. Parsers are handled externally.
Install
- Install:
npm install --save docmatter
- Require:
require('docmatter')
This package is published with the following editions:
docmatter/source/index.coffee
is coffeescript source code with require for modules
docmatter
aliases docmatter/edition-esnext/index.js
docmatter/edition-esnext/index.js
is coffeescript compiled for node.js with require for modules
Environments older than Node.js v8 may need Babel's Polyfill or something similar.
Usage
docmatter is designed to be functional yet minimal, default parser as well as parsing of the headers are handled by you
const docmatter = require('docmatter')
const yamljs = require('yamljs')
function parse (input) {
const matter = docmatter(input)
if (!matter.header) return { content: matter.content.trim() }
let data = null
switch (matter.parser) {
case 'json':
if (matter.header[0] === '{' && matter.header[matter.header.length - 1] === '}') {
data = JSON.parse(matter.header)
}
else {
data = JSON.parse(`{${matter.header}}`)
}
break;
case 'yaml':
default:
data = yamljs.parse(
matter.header.replace(/\t/g, ' ')
)
break;
}
return { data, content: matter.body.trim() }
}
console.log(parse(`
---
title: Hello World
---
`))
console.log(parse(`
---
title: Hello World
---
**hello world**
`))
console.log(parse(`
--- json
"title": "Hello World"
---
**hello world**
`))
console.log(parse(`
**hello world**
`))
console.log(parse(`
/***
minify: true
***/
alert('Hello World')
`))
History
Discover the release history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?

Contributors
These amazing people have contributed code to this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
License
Unless stated otherwise all works are:
- Copyright © 2018+ Benjamin Lupton
and licensed under: