contributed by yuretz
Sometimes it would be nice to be able to preserve the target element
or its children in the DOM tree. This extension allows you to do just that by using HTML
fragments wrapped in
<template>
tags and
<slot>
elements within them.
<slot>
<slot>...some new content</slot>
<slot name="children">
The example below demonstrates a simple editable list implemented using this extension features.