diff --git a/app/components/markdown/markdown.js b/app/components/markdown/markdown.js index c7af96f31..1c6f92824 100644 --- a/app/components/markdown/markdown.js +++ b/app/components/markdown/markdown.js @@ -187,8 +187,18 @@ export default class Markdown extends PureComponent { return {'\n'}; } - renderHtml = () => { - return null; + renderHtml = (props) => { + let rendered = this.renderText(props); + + if (props.isBlock) { + rendered = ( + + {rendered} + + ); + } + + return rendered; } render() {