.. | ||
.github/workflows | ||
example | ||
test | ||
.editorconfig | ||
.prettierrc | ||
index.d.ts | ||
index.js | ||
package.json | ||
README.md |
tiny-matter
super tiny front matter parser just ~20 lines with no dependencies. Type definitions included.
What's is ?
Converts a string with front-matter, like this:
---
title: Hello
slug: home
---
<h1>Hello world!</h1>
Into an object like this:
{
content: '<h1>Hello world!</h1>',
data: {
title: 'Hello',
slug: 'home'
}
}
Install
~$ npm i tiny-matter --save
Example
// CommonJS
const matter = require('tiny-matter');
// ES6
import matter from 'tiny-matter';
console.log(matter('---\ntitle: Front Matter\n---\nThis is content.'));
License
This project is under MIT license.