Package detail

commonmark-react-renderer

rexxars68.4kMIT4.3.5

React renderer for CommonMark (rationalized Markdown)

commonmark, markdown, react, renderer

readme

commonmark-react-renderer

npm versionBuild StatusCoverage StatusCode Climate

Renderer for CommonMark which returns an array of React elements, ready to be used in a React component. See react-markdown for such a component.

Installing

npm install --save commonmark-react-renderer

Basic usage

var CommonMark = require('commonmark');
var ReactRenderer = require('commonmark-react-renderer');

var parser = new CommonMark.Parser();
var renderer = new ReactRenderer();

var input = '# This is a header\n\nAnd this is a paragraph';
var ast = parser.parse(input);
var result = renderer.render(ast);

// `result`:
[
    <h1>This is a header</h1>,
    <p>And this is a paragraph</p>
]

Options

Pass an object of options to the renderer constructor to configure it. Available options:

  • 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).
  • escapeHtml - boolean Setting to true will escape HTML blocks, rendering plain text instead of inserting the blocks as raw HTML (default: false).
  • skipHtml - boolean Setting to true will skip inlined and blocks of HTML (default: false).
  • softBreak - string Setting to br will create <br> tags instead of newlines (default: \n).
  • 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 get a single object argument (node), which includes the following properties:
    • type - string The type of node - same ones accepted in allowedTypes and disallowedTypes
    • renderer - string The resolved renderer for this node
    • props - object Properties for this node
    • children - array Array of children
  • 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 varies based on the type of node. See the Type renderer options section below for more details.
  • 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('commonmark-react-renderer').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.
  • linkTarget - string A string to be used in the anchor tags target attribute e.g., "_blank"

Type renderer options

HtmlInline / HtmlBlock

Note: Inline HTML is currently broken

  • isBlock - boolean true if type is HtmlBlock, false otherwise
  • escapeHtml - boolean Same as renderer option, see above
  • skipHtml - boolean Same as renderer option, see above
  • literal - string The HTML fragment

CodeBlock

  • language - string Language info tag, for instance ``js would set this tojs`. Undefined if the tag is not present in the source.
  • literal - string The string value of the code block

Code

  • literal - string The string value of the inline code
  • inline - boolean Always true. Present to allow reuse of the same renderer for both CodeBlock and Code.

Heading

  • level - number Heading level, from 1 to 6.
  • children - node One or more child nodes for the heading

Softbreak

  • softBreak - mixed Depending on the softBreak setting of the actual renderer, either a given string or a React linebreak element

Link

  • href - string URL for the link
  • title - string Title for the link, if any
  • children - node One or more child nodes for the link

Image

  • src - string URL for the image
  • title - string Title for the image, if any
  • alt - string Alternative text for the image, if any

List

  • start - number Start index of the list
  • type - string Type of list (Bullet/Ordered)
  • tight - boolean Whether the list is tight or not (see http://spec.commonmark.org/0.23/#lists for more details)

Common

  • nodeKey - string A key that can be used by React for the key hint
  • children - node Child nodes of the current node
  • literal - string A literal representation of the node, where applicable
  • data-sourcepos - string If sourcePos option is set, passed to all types and should be present in all the DOM-representations to signify the source position of this node

Testing

git clone git@github.com:rexxars/commonmark-react-renderer.git
cd commonmark-react-renderer
npm install
npm test

License

MIT-licensed. See LICENSE.

changelog

Change Log

All notable changes will be documented in this file.

4.3.3 - 2017-05-28

  • Expose all of codeinfo to CodeBlock renderer (Tauren Mills)
  • Include className in core props (Espen Hovlandsdal)

4.3.2 - 2016-12-08

  • Add linkTarget prop to optionally add a target attribute on links (James Simpson)
  • Fix typo in readme (Chase Ricketts)
  • Allow using Commonmark 0.27 (Lukas Geiger)

4.3.1 - 2016-08-23

  • Update dependencies to latest versions (Espen Hovlandsdal)

4.3.0 - 2016-08-23

  • Enable Commonmark.js 0.26 compatibility (Espen Hovlandsdal)

4.2.4 - 2016-07-09

  • Fix bug where nodes would not be rendered due to duplicate keys (Espen Hovlandsdal)

4.2.3 - 2016-07-09

  • Fix regression in passing props to Code-nodes (Espen Hovlandsdal)

4.2.2 - 2016-07-09

Changes

  • Give Code renderers an inline property that is always true, allowing reuse of renderer for CodeBlock and Code (Espen Hovlandsdal)

4.2.1 - 2016-07-09

Changes

  • Fix bug where lists, codeblocks and headings would not get passed sourcepos prop (Espen Hovlandsdal)

4.2.0 - 2016-07-09

Changes

  • Plain DOM-node renderers are now given only their respective props. Fixes warnings when using React >= 15.2 (Espen Hovlandsdal)

Added

  • New transformImageUri option allows you to transform URIs for images. (Petri Lehtinen)

4.1.4 - 2016-04-27

Changes

  • Fix image alt text when it includes special characters (Ramsay Stirling II)

4.1.3 - 2016-04-26

Changes

  • Pass nodeKey as prop to complex renderers. Fixes warning in React >= 15 (Espen Hovlandsdal)

4.1.2 - 2016-03-12

Changes

  • Also join sibling nodes within paragraphs and similar (Espen Hovlandsdal)

4.1.1 - 2016-03-12

Changes

  • Join sibling text nodes into one text node (Espen Hovlandsdal)

4.0.1 - 2016-02-21

Changes

  • Use strings as renderers in simple cases (Glen Mailer)
  • Set keys on lists and code blocks (Guillaume Plique)

4.0.0 - 2016-02-21

Changes

  • Breaking change: Inline HTML nodes are now wrapped in a <span>, block HTML nodes in <div>. This is necessary to properly support custom renderers.

3.0.2 - 2016-02-21

Changes

  • The default URI transformer no longer applies double URI-encoding.

3.0.1 - 2016-02-21

Added

  • The default URI transformer is now exposed on the uriTransformer property of the renderer, allowing it to be reused.
  • Documentation for transformLinkUri-option.

3.0.0 - 2016-02-21

Changes

  • Breaking change: The renderer now requires Node 0.14 or higher. This is because the renderer uses stateless components internally.
  • Breaking change: allowNode now receives different properties in the options argument. See README.md for more details.
  • Breaking change: CommonMark has changed some type names. Html is now HtmlInline, Header is now Heading and HorizontalRule is now ThematicBreak. This affects the allowedTypes and disallowedTypes options.
  • Breaking change: A bug in the allowedTypes/disallowedTypes and allowNode options made them only applicable to certain types. In this version, all types are filtered, as expected.
  • Breaking change: Link URIs are now filtered through an XSS-filter by default, prefixing "dangerous" protocols such as javascript: with x- (eg: javascript:alert('foo') turns into x-javascript:alert('foo')). This can be overridden with the transformLinkUri-option. Pass null to disable the feature or a custom function to replace the built-in behaviour.

Added

  • New renderers option allows you to customize which React component should be used for rendering given types. See README.md for more details. (Espen Hovlandsdal / Guillaume Plique)
  • New unwrapDisallowed option allows you to select if the contents of a disallowed node should be "unwrapped" (placed into the disallowed node position). For instance, setting this option to true and disallowing a link would still render the text of the link, instead of the whole link node and all it's children disappearing. (Espen Hovlandsdal)
  • New transformLinkUri option allows you to transform URIs in links. By default, an XSS-filter is used, but you could also use this for use cases like transforming absolute to relative URLs, or similar. (Espen Hovlandsdal)

2.2.2 - 2016-01-22

Added

  • Provide index-based keys to generated elements to silent warnings from React (Guillaume Plique)

2.2.1 - 2016-01-22

Changed

  • Upgrade commonmark to latest version (Guillaume Plique)

2.2.0 - 2015-12-11

Added

  • Allow passing allowNode - a function which determines if a given node should be allowed (Espen Hovlandsdal)

2.1.0 - 2015-11-20

Added

  • Add support for specifying which types should be allowed - allowTypes/disallowedTypes (Espen Hovlandsdal)

2.0.2 - 2015-11-19

Added

  • Add support for hard linebreaks (marlonbaeten)

2.0.1 - 2015-10-22

Changed

  • Peer dependency for React was (incorrectly) set to >= 0.14.0, when 0.13.3 was supported.