marksy
A markdown to custom React components library
Install
npm install marksy
API
import marksy from 'marksy'
const compile = marksy({
h1 ({id, children}) {},
h2 ({id, children}) {},
h3 ({id, children}) {},
h4 ({id, children}) {},
blockquote ({children}) {},
hr () {},
ol ({children}) {},
ul ({children}) {},
p ({children}) {},
table ({children}) {},
thead ({children}) {},
tbody ({children}) {},
tr ({children}) {},
th ({children}) {},
td ({children}) {},
a ({href, title, target, children}) {},
strong ({children}) {},
em ({children}) {},
br () {},
del ({children}) {},
img ({src, alt}) {},
code ({language, code}) {},
codespan ({children}) {}
})
const compiled = compile('# hello', {
})
compiled.tree
compiled.toc
Custom components
You can also add your own custom components. You do this by importing marksy/components
. This build of marksy includes babel transpiler which will convert any HTML to React elements and allow for custom components:
import marksy from 'marksy/components'
const compile = marksy({
components: {
MyCustomComponent (props) {
return <h1>{props.children}</h1>
}
}
})
This will be converted to the component above. You can pass in any kind of props, as if it was normal code.
Code highlighting
To enable code highlighting the Prism project needs to be available on window.
Developing
- Clone repo
npm install
npm start
-> localhost:8080 (development app)