Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 589 Bytes

readme.md

File metadata and controls

43 lines (26 loc) · 589 Bytes

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