markdown-it-kbd
TypeScript icon, indicating that this package has built-in type declarations

2.2.2 • Public • Published

markdown-it-kbd Build Status npm version Bower version

markdown-it plugin for keystrokes

Renders [[x]] as <kbd>x</kbd>. (<kbd> is the tag for keystrokes).

Usage

const md = require('markdown-it')();
const kbd = require('markdown-it-kbd');

md.use(kbd);

This plugin can also be used together with markdown-it-attrs.

Syntax notes

The end tag ]] must be on the same line as the start tag [[.

The characters “[” and “]” are not allowed within keystroke tags. If you need to use them, escape them with a backslash (i.e. \[ or \]) or use HTML escape sequences (&#91 for [ or &#93; for ]).

Dependents (13)

Package Sidebar

Install

npm i markdown-it-kbd

Weekly Downloads

372

Version

2.2.2

License

MIT

Unpacked Size

9.02 kB

Total Files

6

Last publish

Collaborators

  • jgleitz