markdown-it-github-preamble

1.0.0 • Public • Published

Markdown It! plugin for YAML preambles

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:

Quick summary of features

  • 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

Status

Stable, production worthy, nicely unit tested. Tested with js-yaml 3.9.0 and markdown-it 8.3.1.

Install

Grab it from NPM:

npm i markdown-it-github-preamble -S

Usage

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
`));

Options

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 and tableAttributeValue: (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's preamble

License

MIT, see the License

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    169
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    169

Package Sidebar

Install

npm i markdown-it-github-preamble

Weekly Downloads

169

Version

1.0.0

License

MIT

Last publish

Collaborators

  • gojko