Skip to content

Commit 1858a7a

Browse files
committed
[continuelist addon] Don't treat markers without whitespace after them as lists
Issue #2621
1 parent b67a6e8 commit 1858a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/edit/continuelist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
})(function(CodeMirror) {
1212
"use strict";
1313

14-
var listRE = /^(\s*)([*+-]|(\d+)\.)(\s*)/,
14+
var listRE = /^(\s*)([*+-]|(\d+)\.)(\s+)/,
1515
unorderedBullets = "*+-";
1616

1717
CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) {

0 commit comments

Comments
 (0)