0.2.0 • Published 4 years ago

remarkable-wikilink v0.2.0

Weekly downloads
6
License
ISC
Repository
github
Last release
4 years ago

remarkable-wikilink

This is a plugin for the Remarkable markdown parser which adds support for [[MediaWiki-style links]].

Usage

const { Remarkable } = require('remarkable')
const md = new Remarkable
md.use(require('remarkable-wikilink'))

const html = md.render(`This is a [[Test]].`)
// <p>This is a <a href="Test">Test</a></p>