remark plugin to strip out a standard Stratic header
This module is deprecated. It turns out that the Stratic header just isn't expressive enough and is t here for no good reason, really.
You should use gulp-grey-matter to parse YAML frontmatter instead. Accordingly, this package is unmaintained.
npm install stratic-strip-header
var remark = require('remark');
var stripHeader = require('stratic-strip-header');
var processor = remark().use(stripHeader);
var doc = processor.process([
'# Post information',
'"Title", "0 UTC-0","Jane Doe", "some, categories"',
'# Post text',
'Some arbitrary Markdown content'
].join('\n'));
console.log(doc);
Outputs:
Some arbitrary Markdown content
LGPL 3.0+
Alex Jordan alex@strugee.net