@davetheitguy/markdown-formatter
v1.0.7
Published
[![JS Tests](https://github.com/droberts-ctrlo/markdown-formatter/actions/workflows/tests.yml/badge.svg)](https://github.com/droberts-ctrlo/markdown-formatter/actions/workflows/tests.yml)
Downloads
5
Readme
Markdown Formatter
This is a simple markdown formatter that will format your template strings to a standard format.
Usage
import {Markdown} from '@davetheitguy/markdown-formatter';
const markdown = Markdown`# Heading!
This is a template string that will be formatted to a standard markdown format.`;
Output
<h1>Heading!</h1>
<p>This is a template string that will be formatted to a standard Markdown format.</p>