Using marked in react

前端 未结 4 1827
感动是毒
感动是毒 2020-12-25 14:50

I want to use marked in reactjs as described in the reactjs docs.

{marked(mystring)}

I use babel so I import marked

4条回答
  •  独厮守ぢ
    2020-12-25 15:42

    If you just want to import marked:

    import marked from 'marked';
    

    Then call the function in your component:

    marked('# Markdown');
    

提交回复
热议问题