mirror of https://github.com/sveltejs/svelte
16 lines
230 B
16 lines
230 B
6 years ago
|
<script>
|
||
3 years ago
|
import { marked } from 'marked';
|
||
6 years ago
|
let text = `Some words are *italic*, some are **bold**`;
|
||
6 years ago
|
</script>
|
||
|
|
||
2 years ago
|
<textarea bind:value={text} />
|
||
6 years ago
|
|
||
4 years ago
|
{@html marked(text)}
|
||
|
|
||
|
<style>
|
||
2 years ago
|
textarea {
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
}
|
||
3 years ago
|
</style>
|