Finish rewiring Markdown provider

This commit is contained in:
Kyle Shockey
2017-05-23 15:29:58 -07:00
parent a2eed69ee7
commit 23b1a8aabd
8 changed files with 8 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
import Remarkable from "react-remarkable"
import React from "react"
export default function Markdown({ source }) {
return <Remarkable
options={{html: true, typographer: true, linkify: true, linkTarget: "_blank"}}
source={source}
></Remarkable>
}