Skip to content

Commit aca3396

Browse files
author
Vitaly Puzrin
committed
dist rebuild
1 parent ffc49ab commit aca3396

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

dist/markdown-it.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! markdown-it 12.3.1 https://github.com/markdown-it/markdown-it @license MIT */
1+
/*! markdown-it 12.3.2 https://github.com/markdown-it/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());
@@ -5752,7 +5752,7 @@
57525752
};
57535753
var isSpace$3 = utils.isSpace;
57545754
var newline = function newline(state, silent) {
5755-
var pmax, max, pos = state.pos;
5755+
var pmax, max, ws, pos = state.pos;
57565756
if (state.src.charCodeAt(pos) !== 10 /* \n */) {
57575757
return false;
57585758
}
@@ -5765,7 +5765,10 @@
57655765
if (!silent) {
57665766
if (pmax >= 0 && state.pending.charCodeAt(pmax) === 32) {
57675767
if (pmax >= 1 && state.pending.charCodeAt(pmax - 1) === 32) {
5768-
state.pending = state.pending.replace(/ +$/, "");
5768+
// Find whitespaces tail of pending chars.
5769+
ws = pmax - 1;
5770+
while (ws >= 1 && state.pending.charCodeAt(ws - 1) === 32) ws--;
5771+
state.pending = state.pending.slice(0, ws);
57695772
state.push("hardbreak", "br", 0);
57705773
} else {
57715774
state.pending = state.pending.slice(0, -1);

dist/markdown-it.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)