rte: change list behaviour in markdown mode

pull/21833/head
Aviral Dasgupta 2017-03-07 04:15:28 +05:30
parent 9946cadc2d
commit f5b52fb488
No known key found for this signature in database
GPG Key ID: 5FD1E9F4FFD3DA80
1 changed files with 2 additions and 2 deletions

View File

@ -487,8 +487,8 @@ export default class MessageComposerInput extends React.Component {
'strike': (text) => `~~${text}~~`, 'strike': (text) => `~~${text}~~`,
'code-block': (text) => `\`\`\`\n${text}\n\`\`\``, 'code-block': (text) => `\`\`\`\n${text}\n\`\`\``,
'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join(''), 'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join(''),
'unordered-list-item': (text) => text.split('\n').map((line) => `- ${line}\n`).join(''), 'unordered-list-item': (text) => text.split('\n').map((line) => `\n- ${line}`).join(''),
'ordered-list-item': (text) => text.split('\n').map((line, i) => `${i + 1}. ${line}\n`).join(''), 'ordered-list-item': (text) => text.split('\n').map((line, i) => `\n${i + 1}. ${line}`).join(''),
}[command]; }[command];
if (modifyFn) { if (modifyFn) {