UNPKG

yamp

Version:
15 lines (11 loc) 280 B
"use strict"; /* Front Matter Parser =================== Parse front-matter options from given string */ const frontMatter = require('front-matter'); module.exports = function(content, done) { let data = frontMatter(content); done(null, data.body, data.attributes); };