fix code-block for markdown mode

pull/21833/head
Aviral Dasgupta 2017-02-22 02:51:57 +05:30
parent 32dd89774e
commit 3a07fc1601
No known key found for this signature in database
GPG Key ID: 5FD1E9F4FFD3DA80
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ export default class MessageComposerInput extends React.Component {
'italic': (text) => `*${text}*`,
'underline': (text) => `_${text}_`, // there's actually no valid underline in Markdown, but *shrug*
'strike': (text) => `~~${text}~~`,
'code': (text) => `\`${text}\``,
'code-block': (text) => `\`\`\`\n${text}\n\`\`\``,
'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join(''),
'unordered-list-item': (text) => text.split('\n').map((line) => `- ${line}\n`).join(''),
'ordered-list-item': (text) => text.split('\n').map((line, i) => `${i + 1}. ${line}\n`).join(''),