svelte-exmarkdown
TypeScript icon, indicating that this package has built-in type declarations

3.0.5 • Public • Published

svelte-exmarkdown

CI codecov License MIT

Svelte component to render markdown. Dynamic and Extensible.

Motivation

svelte-markdown is a good component package. However, it is not extensible. You cannot use custom syntax(e.g. KaTeX).

MDsveX is another good package. However, it is a preprocessor. Not suitable for dynamic rendering.

We need pluggable and dynamic markdown renderer in svelte like react-markdown.

Usage

<script>
	import Markdown from 'svelte-exmarkdown';
	let md = '# Hello world!';
</script>

<textarea bind:value={md} />
<Markdown {md} />

with GFM

<script>
	import Markdown from 'svelte-exmarkdown';
	import { gfmPlugin } from 'svelte-exmarkdown/gfm';
	let md = '# Hello world!';
	const plugins = [gfmPlugin()];
</script>

<textarea bind:value={md} />
<Markdown {md} {plugins} />

Playground & Documents

https://ssssota.github.io/svelte-exmarkdown

Package Sidebar

Install

npm i svelte-exmarkdown

Weekly Downloads

3,013

Version

3.0.5

License

MIT

Unpacked Size

409 kB

Total Files

21

Last publish

Collaborators

  • ssssota