mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-20 02:35:53 +10:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
module.exports = function parseFrontmatter (content) {
|
|
const matter = require('gray-matter')
|
|
const toml = require('toml')
|
|
|
|
return matter(content, {
|
|
excerpt_separator: '<!-- more -->',
|
|
engines: {
|
|
toml: toml.parse.bind(toml),
|
|
excerpt: false
|
|
}
|
|
})
|
|
}
|