const matter = require('..'); const green = require('ansi-green'); console.log(green('/* excerpt with custom separator */')); const file = matter([ '---', 'foo: bar', '---', 'This is an excerpt.', '', 'This is content' ].join('\n'), {excerpt_separator: ''}); console.log(file);