diff --git a/frontend/src/Components/Markdown/InlineMarkdown.js b/frontend/src/Components/Markdown/InlineMarkdown.js index a9f04dc0e..082f0bb88 100644 --- a/frontend/src/Components/Markdown/InlineMarkdown.js +++ b/frontend/src/Components/Markdown/InlineMarkdown.js @@ -54,6 +54,10 @@ class InlineMarkdown extends Component { if (endIndex !== data.length && markdownBlocks.length > 0 && matchedCode) { markdownBlocks.push(data.substr(endIndex, data.length - endIndex)); } + + if (markdownBlocks.length === 0) { + markdownBlocks.push(data); + } } return {markdownBlocks};