## 2017-07-03

- Pasted html and text becomes [lively-content](doc/lively-content.md)
- Lively4 User Stories page 


## Lively Script Intro

### 1. A livley-script that returns a string

```
<lively-script>
"hello " + " world" // one string is a directive...
</lively-script>
```

<lively-script>
"hello " + " world" // one string is a directive...
</lively-script>

### 2. A lively-script with whitespace or html needs a script tag (and we get syntax highlighting)


```
<lively-script><script>
let a = "hello "

a + " world"
</script></lively-script>
```

<lively-script><script>
let a = "hello "

a + " world"
</script></lively-script>

### 3. And what is "this" inside the lively-script?


```
<lively-script><script>
"hello " + " world"
</script></lively-script>
```

<lively-script><script>
"hello " + " world"
</script></lively-script>


