All Projects → jGleitz → markdown-it-kbd

jGleitz / markdown-it-kbd

Licence: MIT license
markdown-it plugin for keystrokes. Renders [[x]] as <kbd>x</kbd>

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to markdown-it-kbd

autobadge
Simple CLI tool to generate essential repository badges with ease
Stars: ✭ 16 (-36%)
Mutual labels:  markdown-it
KeysPerSecond
A keys-per-second meter & counter. Written for osu! but should work for other rhythm games too.
Stars: ✭ 238 (+852%)
Mutual labels:  keystrokes
KeyPlexer
Capstone: Keylogger Trojan
Stars: ✭ 32 (+28%)
Mutual labels:  keystrokes
keystats
A simple keylogger for macOS
Stars: ✭ 24 (-4%)
Mutual labels:  keystrokes
Key-n-Stroke
I'm an app and show all the letters you type and keyboard shortcuts you use as well as mouse clicks.
Stars: ✭ 223 (+792%)
Mutual labels:  keystrokes
swdc-vim
Track your programming activity in real-time in Vim
Stars: ✭ 19 (-24%)
Mutual labels:  keystrokes
Markvis
make visualization in markdown. 📊📈
Stars: ✭ 1,509 (+5936%)
Mutual labels:  markdown-it
Nodeppt
This is probably the best web presentation tool so far!
Stars: ✭ 9,589 (+38256%)
Mutual labels:  markdown-it
Remarkable
Markdown parser, done right. Commonmark support, extensions, syntax plugins, high speed - all in one. Gulp and metalsmith plugins available. Used by Facebook, Docusaurus and many others! Use https://github.com/breakdance/breakdance for HTML-to-markdown conversion. Use https://github.com/jonschlinkert/markdown-toc to generate a table of contents.
Stars: ✭ 5,252 (+20908%)
Mutual labels:  markdown-it
Markdown-for-Documentation
Markdown is a HTML compatible language used for Documentation.
Stars: ✭ 14 (-44%)
Mutual labels:  markdown-it
vite-plugin-md
Markdown with Vue for Vite
Stars: ✭ 289 (+1056%)
Mutual labels:  markdown-it
twoslash
You take some Shiki, add a hint of TypeScript compiler, and 🎉 incredible static code samples
Stars: ✭ 596 (+2284%)
Mutual labels:  markdown-it
markdown-it-calendar
Automatically produced markdown-it-calendar
Stars: ✭ 23 (-8%)
Mutual labels:  markdown-it
markdown-it-fence
fence customize plugin for markdown-it
Stars: ✭ 20 (-20%)
Mutual labels:  markdown-it
markdown-it-github-headings
Add anchors and links to headings just like Github does
Stars: ✭ 22 (-12%)
Mutual labels:  markdown-it
menote
A simple, beautiful Markdown editor powered by vue.js, ace, markdown-it. ✨
Stars: ✭ 56 (+124%)
Mutual labels:  markdown-it
tw5-markdown
Comprehensive Markdown plugin for TiddlyWiki
Stars: ✭ 26 (+4%)
Mutual labels:  markdown-it
motion-markdown-it
Ruby/RubyMotion version of Markdown-it (CommonMark compliant parser and extendable)
Stars: ✭ 42 (+68%)
Mutual labels:  markdown-it
keyboard-css
Show off your keyboard shortcuts with style 🦄.
Stars: ✭ 52 (+108%)
Mutual labels:  kbd
cheatsheet-generator
Generates cheatsheets for your (favourite) apps
Stars: ✭ 49 (+96%)
Mutual labels:  kbd

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 ]).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].