Update markdown.jsx

This commit is contained in:
shockey
2017-07-14 17:28:36 -07:00
committed by GitHub
parent 914b21f228
commit 6ec7006c21

View File

@@ -21,7 +21,7 @@ function Markdown({ source }) {
return <div className="markdown">
<Remarkable
options={{html: true, typographer: true, breaks: true, linkify: true, linkTarget: "_blank"}}
source={source}
source={sanitized}
></Remarkable>
</div>
}