This package has been deprecated

Author message:

moved to markdown-it-regexp

remarkable-regexp

0.2.4 • Public • Published

Make simple remarkable plugins easier.

Usage:

var Remarkable = require('remarkable')
var Plugin     = require('remarkable-regexp')
 
var plugin = Plugin(
  // regexp to match
  /@(\w+)/,
 
  // this function will be called when something matches
  function(match, utils) {
    var url = 'http://example.org/u/' + match[1]
 
    return '<a href="' + utils.escape(url) + '">'
         + utils.escape(match[1])
         + '</a>'
  }
)
 
new Remarkable()
  .use(plugin)
  .render("hello @user")
 
// prints out:
// <p>hello <a href="http://example.org/u/user">user</a></p>

Fair warning:

  1. it could be slower than you expect
  2. it is a draft, breaking changes might happen

Readme

Keywords

Package Sidebar

Install

npm i remarkable-regexp

Weekly Downloads

0

Version

0.2.4

License

MIT

Last publish

Collaborators

  • rlidwka