diff --git a/_src/plugins/list.js b/_src/plugins/list.js index 680e4230f272df6aaed1188e3db7c7b5d95d8281..4254c1890938242c7b0baaf33376ebaa38eec4e3 100644 --- a/_src/plugins/list.js +++ b/_src/plugins/list.js @@ -448,7 +448,7 @@ UE.plugins['list'] = function () { li = domUtils.findParentByTagName(rng.startContainer,'li',true); if(parent && !li){ var html = parent.innerHTML.replace(new RegExp(domUtils.fillChar, 'g'),''); - if(/^\s*1\s*\./.test(html)){ + if(/^\s*1\s*\.[^\d]/.test(html)){ parent.innerHTML = html.replace(/^\s*1\s*\./,''); rng.setStartAtLast(parent).collapse(true).select(); me.__hasEnterExecCommand = true;