### Basic Usage Source: https://github.com/developit/snarkdown/blob/main/README.md Demonstrates how to import and use the snarkdown function to parse a Markdown string into an HTML string. ```javascript import snarkdown from 'snarkdown'; let md = '_this_ is **easy** to `use`.'; let html = snarkdown(md); console.log(html); // this is easy to use. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.