2.0.0 • Published 1 year ago

@hyperlink/strip-markdown-oneline v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

strip-markdown-oneline

Given a markdown input as string, returns a string where all markdown syntax is removed, and no new lines exist.

Installation

npm install strip-markdown-oneline

Usage

Input

# Title

> blockquote

## Header 2

This is a link: [search engine](https://duckduckgo.com)

Function call

const stripMarkdownOneline = require('strip-markdown-oneline')

const output = stripMarkdownOneline(input);

console.log(output)

Output

Title blockquote Header 2 This is a link: search engine

License

MIT