This plugin can turn fenced code blocks at the start of your markdown files into tables, replicating functionality from GitHub flavoured markdown, commonly required for static site generators such as Jekyll. Originally built for Appraise.
Turns blocks like these:
---
fixture: fixtures/path.js
---
Into tables like this:
- By default, renders a table with property names and values
- Optionally adding a CSS class or marker HTML attributes to the table for easy identification
- Easily configurable to use different block markers
- Supports pluggable rendering, so you can easily display the results it differently
- Works with js-yaml, so it parses almost any valid YAML easily
Stable, production worthy, nicely unit tested. Tested with js-yaml
3.9.0 and markdown-it
8.3.1.
Grab it from NPM:
npm i markdown-it-github-preamble -S
The plugin works the same way Markdown It! plugins work, so just .use
it:
const Markdown = require('markdown-it'),
markdownItGithubPreamble = require('markdown-it-github-preamble'),
md = new Markdown().use(markdownItGithubPreamble);
console.log(md.render(
`---
propa: vala
propb: valb
---
abcd
`));
You can also supply additional options and customise the plugin:
const Markdown = require('markdown-it'),
markdownItGithubPreamble = require('markdown-it-github-preamble'),
md = new Markdown().use(markdownItGithubPreamble, {className: 'preamble'});
console.log(md.render(
`---
propa: vala
propb: valb
---
abcd
`));
See the unit tests for examples of how to use all these options.
className
: (string
) a CSS class that will be added to the root table element of the preamble, for easy styling.tableAttributeName
andtableAttributeValue
: (string
) the name and value of a HTML attribute that will be added to the root table element of the preamble, for easy identification in DOM parsers.marker
: (string
) the fence character identifying the YAML preamble block (by default,'-'
)render
: (function
) a custom Markdown It! rendered to use for turning the preamble tokens into HTML, instead of a table.name
: (string
) internal identifier for the plugin, used as a prefix for tokens and renderers. Change it to avoid conflicts with other plugins using similar token names. By default, it'spreamble
MIT, see the License