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
- Module:
require('docmatter')
This package is published with the following editions:
docmatter
aliases docmatter/index.js
which uses Editions to automatically select the correct edition for the consumers environmentdocmatter/source/index.coffee
is Source + CoffeeScript + Requiredocmatter/esnext/index.js
is CoffeeScript Compiled + ESNext + Requiredocmatter/es2015/index.js
is CoffeeScript Compiled + ES2015 + Require
Older environments 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
No maintainers yet! Will you be the first?
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: