@cloudflare/util-markdown

Cloudflare Markdown Util

Usage no npm install needed!

<script type="module">
  import cloudflareUtilMarkdown from 'https://cdn.skypack.dev/@cloudflare/util-markdown';
</script>

README

cf-util-markdown

Cloudflare Markdown Util

This utility library is a simple interface that hides away the markdown implementation being used so that it can easily be swapped out for something else.

Installation

$ npm install cf-util-markdown

Usage

import markdown from 'cf-util-markdown';

markdown('# Hello World');
// >> <h1>Hello World</h1>

If for some crazy crazy crazy reason you need to stop the markdown from being sanitized you may do the following:

WARNING: Be extremely careful about XSS vulnerabilities when doing this!

markdown('<h1>Hello World</h1>', { __dangerouslyDontSanitizeMarkdown: true });