添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
飘逸的李子  ·  ES6 Class Mocks · Jest·  4 月前    · 
会开车的滑板  ·  SIGSEGV because of ...·  5 月前    · 
千杯不醉的路灯  ·  URL.createObjectURL ...·  6 月前    · 
活泼的蚂蚁  ·  PowerShell函数返回值 - ...·  6 月前    · 
博学的黄瓜  ·  Writing Multiple ...·  7 月前    · 

react-markdown-to-html

1.0.11 Public • Published

Markdown to HTML

React Component that converts a Markdown file to HTML

Demo at opensourceprojects.robbestad.com

Installation

% npm install react-markdown-to-html --save

Usage

With JSX

var Markdown2HTML = require('react-markdown-to-html');
MyComponent = React.createClass({
  render: function() {
     return (
       <Markdown2HTML src="README.md" />

Without JSX

 var Markdown2HTML = require('react-markdown-to-html');
 MyComponent = React.createClass({displayName: "MyComponent",
   render: function() {
      return (
        React.createElement(Markdown2HTML, {src: "README.md"})