@hyperlink/strip-markdown-oneline
v2.0.0
Published
Converts markdown text to a single line without markdown syntax
Downloads
1
Maintainers
Readme
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