16 lines
217 B

<script>
let html = '<p>Write some text!</p>';
</script>
<div contenteditable="true" />
<pre>{html}</pre>
<style>
[contenteditable] {
padding: 0.5em;
border: 1px solid #eee;
border-radius: 4px;
}
</style>