Socket
Socket
Sign inDemoInstall

markdown-to-react-components

Package Overview
Dependencies
2
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    markdown-to-react-components

Convert markdown into react components


Version published
Weekly downloads
166
decreased by-24.2%
Maintainers
2
Install size
226 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 22 Feb 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc