Skip to content

Commit

Permalink
dist rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Puzrin committed Apr 16, 2021
1 parent 28d9ad8 commit e5b0eb3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dist/markdown-it.js
@@ -1,4 +1,4 @@
/*! markdown-it 12.0.5 https://github.com/markdown-it/markdown-it @license MIT */
/*! markdown-it 12.0.6 https://github.com/markdown-it/markdown-it @license MIT */
(function(global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self,
global.markdownit = factory());
Expand Down Expand Up @@ -3285,6 +3285,8 @@
result += tokens[i].content;
} else if (tokens[i].type === "image") {
result += this.renderInlineAsText(tokens[i].children, options, env);
} else if (tokens[i].type === "softbreak") {
result += "\n";
}
}
return result;
Expand Down
4 changes: 2 additions & 2 deletions dist/markdown-it.min.js

Large diffs are not rendered by default.

0 comments on commit e5b0eb3

Please sign in to comment.