0.1.1 ā€¢ Published 3 years ago

markdown-to-text v0.1.1

Weekly downloads
369
License
MIT
Repository
github
Last release
3 years ago

Parse the markdown and returns a string

Install

# npm
npm install markdown-to-text

# yarn
yarn add markdown-to-text

Usage

// ES5
const removeMarkdown = require("markdown-to-text");
// Or in ES6
import removeMarkdown from "markdown-to-text";

const markdown =
  "*Javascript* [developers](https://engineering.condenast.io/) are the _best_.";
removeMarkdown(markdown);

// It will render to
// Javascript developers are the best.

Author

šŸ‘¤ Daniel Esteves

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2020 Daniel Esteves. This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator