Via https://github.com/sveltejs/svelte/issues/10 / https://github.com/sveltejs/svelte/pull/309. In Ractive this was done with... ```html <div contenteditable value='{{foo}}'></div> ``` ...so the Svelte equivalent would be ```html <div contenteditable bind:value='foo'></div> ``` Arguably this should warn or throw if the element contains any children.