Use Gray-matter
const matter = require('gray-matter');console.log(matter('---\ntitle: Front Matter\n---\nThis is content.'));{
content: '\nThis is content.',
data: {
title: 'Front Matter'
}
}---
title: Hello
slug: home
---
<h1>Hello world!</h1>Reference Links
Last updated