Skip to content

Commit d8e0851

Browse files
committed
12.0.18
1 parent 123fe3e commit d8e0851

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

dist/markdown-it.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @hackmd/markdown-it 12.0.17 https://github.com/hackmdio/markdown-it @license MIT */
1+
/*! @hackmd/markdown-it 12.0.18 https://github.com/hackmdio/markdown-it @license MIT */
22
(function(global, factory) {
33
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self,
44
global.markdownit = factory());
@@ -5764,7 +5764,7 @@
57645764
queue[i] = this.src.slice(first, last);
57655765
}
57665766
if (replaceIndentSpaceWithZWSP) {
5767-
queue[i] = new Array(lineIndent + 1).join(ZWSP) + queue[i];
5767+
queue[i] = new Array(first - lineStart + 1).join(ZWSP) + queue[i];
57685768
}
57695769
}
57705770
return queue.join("");

dist/markdown-it.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hackmd/markdown-it",
3-
"version": "12.0.17",
3+
"version": "12.0.18",
44
"description": "Markdown-it - modern pluggable markdown parser.",
55
"keywords": [
66
"markdown",

0 commit comments

Comments
 (0)