matthewmueller-react-remarkable

1.1.2 • Public • Published

react-remarkable

A React component for rendering Markdown with remarkable.

npm install --save react-remarkable

Usage

var React = require('react');
var Markdown = require('react-remarkable');

var MyComponent = React.createClass({

  render: function() {
    return (
      <div>
        {/* Pass Markdown source to the `source` prop */}
        <Markdown source="**Markdown is awesome!**" />

        {/* Or pass it as children */}
        {/* You can nest React components, too */}
        <Markdown>
        {`
          ## Reasons React is great

          1. Server-side rendering
          2. This totally works:

          <SomeOtherAmazingComponent />

          Pretty neat!
        `}
        </Markdown>
      </div>
    );
  }

});

Available props:

  • options - Hash of Remarkable options
  • source - Markdown source. You can also pass the source as children, which allows you to mix React components and Markdown.
  • container - Element to use as container. Defaults to span.

License

MIT

/matthewmueller-react-remarkable/

    Package Sidebar

    Install

    npm i matthewmueller-react-remarkable

    Weekly Downloads

    3

    Version

    1.1.2

    License

    MIT

    Last publish

    Collaborators

    • mattmueller