0.0.2 • Published 2 years ago

tiny-matter v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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.