You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/site/content/OLD.examples/binding-textarea/App.svelte

15 lines
331 B

<script>
import marked from 'marked';
let markdown = `# Markdown editor\n\nTODOs:\n\n* make a Svelte app\n* think of a third item for this list`;
</script>
<style>
textarea {
width: 100%;
height: 50%;
}
</style>
<textarea bind:value={markdown} resize="none"></textarea>
<div class="output">{@html marked(markdown)}</div>