We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc597f0 commit b6c0327Copy full SHA for b6c0327
core/src/commands/olist.tsx
@@ -16,7 +16,7 @@ export const olist: ICommand = {
16
if (!state || !view) return;
17
const lineInfo = view.state.doc.lineAt(view.state.selection.main.from);
18
let mark = '1. ';
19
- const matchMark = lineInfo.text.match(/^\1\./);
+ const matchMark = lineInfo.text.match(/^1\./);
20
if (matchMark && matchMark[0]) {
21
mark = '';
22
}
0 commit comments