Fix markdown editor to mark up orderedlists correctly

to close #3513
This commit is contained in:
Dave Conway-Jones 2022-03-31 13:45:07 +01:00
parent c8dc2327a3
commit 77e2e44abc
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@
'b': { before:"**", after: "**", tooltip: RED._("markdownEditor.bold")},
'i': { before:"_", after: "_", tooltip: RED._("markdownEditor.italic")},
'code': { before:"`", after: "`", tooltip: RED._("markdownEditor.code")},
'ol': { before:" * ", newline: true, tooltip: RED._("markdownEditor.ordered-list")},
'ol': { before:" 1. ", newline: true, tooltip: RED._("markdownEditor.ordered-list")},
'ul': { before:" - ", newline: true, tooltip: RED._("markdownEditor.unordered-list")},
'bq': { before:"> ", newline: true, tooltip: RED._("markdownEditor.quote")},
'link': { before:"[", after: "]()", tooltip: RED._("markdownEditor.link")},