Skip to content
This repository has been archived by the owner on Jan 1, 2018. It is now read-only.

Latest commit

 

History

History
48 lines (32 loc) · 1.03 KB

README.md

File metadata and controls

48 lines (32 loc) · 1.03 KB

stratic-validate-header

remark plugin to validate a standard Stratic header

DEPRECATED

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.

Installation

npm install stratic-validate-header

Usage

var remark = require('remark');
var validateHeader = require('stratic-validate-header');

var processor = remark().use(validateHeader);

// No output
processor.process([
    '# Post information',
    '"Title", "0 UTC-0","Jane Doe", "some, categories"',
	'# Post text',
	'Some arbitrary Markdown content'
].join('\n'));

// Throws an Error
processor.process([
    '# Invalid',
    'Some other Markdown'
].join('\n'));

License

LGPL 3.0+

Author

Alex Jordan [email protected]