You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
fix code-block for markdown mode
This commit is contained in:
@@ -485,7 +485,7 @@ export default class MessageComposerInput extends React.Component {
|
|||||||
'italic': (text) => `*${text}*`,
|
'italic': (text) => `*${text}*`,
|
||||||
'underline': (text) => `_${text}_`, // there's actually no valid underline in Markdown, but *shrug*
|
'underline': (text) => `_${text}_`, // there's actually no valid underline in Markdown, but *shrug*
|
||||||
'strike': (text) => `~~${text}~~`,
|
'strike': (text) => `~~${text}~~`,
|
||||||
'code': (text) => `\`${text}\``,
|
'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) => `- ${line}\n`).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) => `${i + 1}. ${line}\n`).join(''),
|
||||||
|
|||||||
Reference in New Issue
Block a user