Browse Source

2.1.2 released

pull/14/head 2.1.2
Vitaly Puzrin 10 years ago
parent
commit
c613c792c6
  1. 3
      CHANGELOG.md
  2. 2
      package.json
  3. 1
      support/demo_template/index.js

3
CHANGELOG.md

@ -1,8 +1,9 @@
2.x.x / WIP
2.1.1 / 2014-12-23
------------------
- Exposed helpers into parser instances (for plugins).
- Removed utils from global export - been in instances seems enougth.
- Refactored demo & added markdown-it-emoji to it.
2.1.1 / 2014-12-22

2
package.json

@ -1,6 +1,6 @@
{
"name": "markdown-it",
"version": "2.1.1",
"version": "2.1.2",
"description": "Markdown-it - modern pluggable markdown parser.",
"keywords": [
"markdown",

1
support/demo_template/index.js

@ -70,7 +70,6 @@
};
// Replace emoji codes with images
mdHtml.renderer.rules.emoji = function(token, idx) {
console.log(token[idx].name);
return window.twemoji.parse(token[idx].to);
};

Loading…
Cancel
Save