fix markdown off by 1 error
This commit is contained in:
parent
21e0c8ce3e
commit
96f6fc68a3
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ class MarkDown {
|
|||
}
|
||||
if (
|
||||
find === count &&
|
||||
(count != 1 || txt[j + 1] === " " || txt[j + 1] === "\n" || txt[j + 1] === undefined)
|
||||
(count != 1 || txt[j] === " " || txt[j] === "\n" || txt[j] === undefined)
|
||||
) {
|
||||
appendcurrent();
|
||||
i = j;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue