Code Monkey home page Code Monkey logo

react-markdown's Introduction

react-markdown

Renders Markdown as pure React components.

npm versionBuild StatusCode Climate

Demo available at http://rexxars.github.io/react-markdown/


react-markdown is proudly sponsored by


Sanity: The Headless CMS Construction Kit

Installing

npm install --save react-markdown

Basic usage

const React = require('react')
const ReactDOM = require('react-dom')
const ReactMarkdown = require('react-markdown')

const input = '# This is a header\n\nAnd this is a paragraph'

ReactDOM.render(
  <ReactMarkdown source={input} />,
  document.getElementById('container')
)

Notes

If you don't need to render HTML, this component does not use dangerouslySetInnerHTML at all - this is a Good Thing™.

Inline HTML is broken

Inline HTML is currently broken for any tags that include attributes. A vague idea of how to fix this has been planned, but if you're feeling up to the task, create an issue and let us know!

Options

  • source - string The Markdown source to parse (required)
  • className - string Class name of the container element (default: '').
  • escapeHtml - boolean Setting to false will cause HTML to be rendered (see note above about broken HTML, though). Be aware that setting this to false might cause security issues if the input is user-generated. Use at your own risk. (default: true).
  • skipHtml - boolean Setting to true will skip inlined and blocks of HTML (default: false).
  • sourcePos - boolean Setting to true will add data-sourcepos attributes to all elements, indicating where in the markdown source they were rendered from (default: false).
  • allowedTypes - array Defines which types of nodes should be allowed (rendered). (default: all types).
  • disallowedTypes - array Defines which types of nodes should be disallowed (not rendered). (default: none).
  • unwrapDisallowed - boolean Setting to true will try to extract/unwrap the children of disallowed nodes. For instance, if disallowing Strong, the default behaviour is to simply skip the text within the strong altogether, while the behaviour some might want is to simply have the text returned without the strong wrapping it. (default: false)
  • allowNode - function Function execute if in order to determine if the node should be allowed. Ran prior to checking allowedTypes/disallowedTypes. Returning a truthy value will allow the node to be included. Note that if this function returns true and the type is not in allowedTypes (or specified as a disallowedType), it won't be included. The function will receive three arguments argument (node, index, parent), where node contains different properties depending on the node type.
  • transformLinkUri - function|null Function that gets called for each encountered link with a single argument - uri. The returned value is used in place of the original. The default link URI transformer acts as an XSS-filter, neutralizing things like javascript:, vbscript: and file: protocols. If you specify a custom function, this default filter won't be called, but you can access it as require('react-markdown').uriTransformer. If you want to disable the default transformer, pass null to this option.
  • transformImageUri - function|null Function that gets called for each encountered image with a single argument - uri. The returned value is used in place of the original.
  • renderers - object An object where the keys represent the node type and the value is a React component. The object is merged with the default renderers. The props passed to the component consties based on the type of node.

Node types

The node types available are the following, and applies to both renderers and allowedTypes/disallowedTypes:

  • root - Root container element that contains the rendered markdown
  • break - Hard-break (<br>)
  • paragraph - Paragraph (<p>)
  • emphasis - Emphasis (<em>)
  • strong - Strong/bold (<strong>)
  • thematicBreak - Horizontal rule / thematic break (<hr>)
  • blockquote - Block quote (<blockquote>)
  • delete - Deleted/strike-through (<del>)
  • link - Link (<a>)
  • image - Image (<img>)
  • linkReference - Link (through a reference) (<a>)
  • imageReference - Image (through a reference) (<img>)
  • table - Table (<table>)
  • tableHead - Table head (<thead>)
  • tableBody - Table body (<tbody>)
  • tableRow - Table row (<tr>)
  • tableCell - Table cell (<td>/<th>)
  • list - List (<ul>/<ol>)
  • listItem - List item (<li>)
  • definition - Definition (not rendered by default)
  • heading - Heading (<h1>-<h6>)
  • inlineCode - Inline code (<code>)
  • code - Block of code (<pre><code>)
  • html - HTML node (Best-effort rendering)

Note: Disallowing a node will also prevent the rendering of any children of that node, unless the unwrapDisallowed option is set to true. Eg, disallowing a paragraph will not render it's children text nodes.

Developing

git clone [email protected]:rexxars/react-markdown.git
cd react-markdown
npm install
npm test

License

MIT-licensed. See LICENSE.

react-markdown's People

Contributors

firsara avatar futuraprime avatar goto-bus-stop avatar igorkamyshev avatar irus avatar mudrz avatar pajn avatar rexxars avatar rikukissa avatar rwieruch avatar thomaslindstrom avatar tiagoroldao avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.