## 2018-03-08

Instead of using the [lively-container](open://lively-container), we can load [html mindmap](https://lively-kernel.org/lively4/lively4-jens/doc/map.html) into the body. We could contiue working on it there and eventually save it back into a file?

```javascript
document.body.querySelectorAll(".lively-content").forEach(ea => ea.remove())

fetch("https://lively-kernel.org/lively4/lively4-jens/doc/map.html").then(r => r.text()).then(source => {
  lively.clipboard.pasteHTMLDataInto(source, document.body, true, lively.getGlobalPosition(document.body))
})
```