Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 908 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 908 Bytes

markdown-it-flowdock

Build Status

flowdock hashtag (#tag), mentions (@user) and relaxed autolink plugin for markdown-it markdown parser.

  • @user => <a class="mention">@user</a>
  • #hashtag => <a class="hashtag">#hashtag</a>
  • https://github.com/flowdock/markdown-it-flowdock => <a href="https://github.com/flowdock/markdown-it-flowdock">https://github.com/flowdock/markdown-it-flowdock</a>

Install

node.js:

npm install markdown-it-flowdock --save
var md = require('markdown-it')().use(require('markdown-it-flowdock'));
md.render('Test #hahstag @user'); // => 'Test <a class="hashtag">#hashtag</a> <a class="mention">@user</a>'

Tests

Tests are run with npm:

npm install
npm test