markdown-to-react-components
Convert markdown into react components
Last updated 9 years ago by christianalfoni .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install markdown-to-react-components 
SYNC missed versions from official npm registry.

markdown-to-react-components

Convert markdown into react components

Whats different?

There are several projects that claims to convert markdown using React, but that is not exactly right. They produce one single React component with some plain markdown converted HTML in it. They do not produce React components of the markdown syntax. But this project does!

Features

  • Converts markdown syntax to React components. It is a lot more performant on live changes
  • Define your own components to be used as headers, lists etc.
  • Code highlighting using Prism.js
  • Also returns a TOC (Table Of Contents), based on headers used
  • TOC and Header ids match so that you can use anchor links (<a href="#my-heading>My heading</a>)

Install

npm install markdown-to-react-components

How to use

import React from 'react';
import MTRC from 'markdown-to-react-components';

MTRC.configure({
  h1: React.createClass({
    render() {
      return <h1 id={this.props.id} style={{color: 'red'}}>{this.props.children}</h1>
    }
  })
});

const Editor = React.createClass({
  getInitialState() {
    return {
      content: null
    };
  },
  onTextareaChange(event) {
    this.setState({
      content: MTRC(event.target.value).tree
    });
  },
  render() {
    return (
      <div>
        <div>{this.state.content}</div>
        <textarea onChange={this.onTextareaChange}/>
      </div>
    );
  }
});

export default Editor;

Code highlight

You will have to include the Prism.js library and its css manually in your project. Look in the example app to see how this is done.


    ```javascript
    var foo = 'bar';
    ```

    ```html
    <h1>Hello world!</h1>
    ```

Supported languages can be found over at prism.js.

API

Configure

Allows you to configure custom elements for your markdown.

MTRC.configure({
  h1: React.createClass({
    render() {
      return <h1 style={{color: 'red'}}>{this.props.children}</h1>
    }
  })
});
  • h1: this.props.children, this.props.id
  • h2: this.props.children, this.props.id
  • h3: this.props.children, this.props.id
  • h4: this.props.children, this.props.id
  • blockquote: this.props.children
  • hr: -
  • ol: this.props.children
  • ul: this.props.children
  • p: this.props.children
  • table: this.props.children
  • tr: this.props.children
  • th: this.props.children
  • td: this.props.children
  • td: this.props.children
  • a: this.props.children, this.props.href, this.props.title, this.props.target
  • strong: this.props.children
  • em: this.props.children
  • br: -
  • del: this.props.children
  • img: this.props.src, this.props.alt
  • code: this.props.language, this.props.code
  • codespan: this.props.children

Convert

MTRC('# Hello there').tree // React virtual dom tree
MTRC('# Hello there').toc // [{children: [], level: 1, title: 'Hello there', id: 'hello-there'}]

Run demo

  • npm install
  • npm start
  • Go to: http://localhost:8080/webpack-dev-server/bundle

Current Tags

  • 0.2.4                                ...           latest (9 years ago)

10 Versions

  • 0.2.4                                ...           9 years ago
  • 0.2.3                                ...           9 years ago
  • 0.2.2                                ...           9 years ago
  • 0.2.1                                ...           10 years ago
  • 0.2.0                                ...           10 years ago
  • 0.1.4                                ...           10 years ago
  • 0.1.3                                ...           10 years ago
  • 0.1.2                                ...           10 years ago
  • 0.1.1                                ...           11 years ago
  • 0.1.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 9
Last Month 10
Dependencies (2)
Dev Dependencies (7)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |