An open API service indexing awesome lists of open source software.

https://github.com/dragomano/svelte-showdown

Wrapper for Showdown that parses Markdown in your Svelte components
https://github.com/dragomano/svelte-showdown

showdown svelte-components

Last synced: 4 months ago
JSON representation

Wrapper for Showdown that parses Markdown in your Svelte components

Awesome Lists containing this project

README

          

# Svelte Showdown

Use [showdown](https://github.com/showdownjs/showdown) as a Svelte component.

```bash
pnpm i svelte-showdown -D
```

## How to use

```svelte

import { SvelteShowdown } from 'svelte-showdown';

let content = $state('**This text is bold**, and this one contains emoji: :smile: :alien:');

const options = {
emoji: true
};

```