react-native-html-to-markdown

1.0.0 • Public • Published

React-Native Html to markdown converter

A simple html to markdown converter that converts html to markdown, using no dependencies. Perfect for react-native.

My own use case for this is quite simple. If it doesn't quite fit yours, PRs are welcome!

Tags Supported

  1. h1,h2,h3,h4,h5,h6
  2. p
  3. ul,ol
  4. blockquote,
  5. pre
  6. bold,strong
  7. italic,em
  8. a
  9. br

Converting Html Documents

var converter = require('html-to-markdown');
var markdown = converter.convert('<h2> Happy Journey </h2>');

Extending to add your own formatters.

var converter = require('html-to-markdown');
converter.use(function (html) {
  // making required changes
  // and return new html
})

credits

This was forked from https://github.com/thetutlage/html-to-markdown, which was a good start but is no longer maintained.

Package Sidebar

Install

npm i react-native-html-to-markdown

Weekly Downloads

144

Version

1.0.0

License

MIT

Unpacked Size

9.38 kB

Total Files

11

Last publish

Collaborators

  • zeevl