# Part 1
* run all tests from D224
# Part 2
1. create `test.tpl` file with this content
```
lang=html
<inp2:m_DefaultParam param_name="wow" wow="ok"/>
[<inp2:m_Param name="$param_name"/>]
[<inp2:m_Param name="param_name"/>]
```
2. open URL matching that template in browser
3. confirm, that in `View Source` of opened page contains:
```
[ok]
[wow]
```
# Part 3
1. create `test.tpl` file with this content
```
lang=html
<inp2:m_DefaultParam param_name="wow" wow="ok"/>
<inp2:m_Capture to_var="wow">
la-la
</inp2:m_Capture>
[<inp2:m_Param name="$param_name"/>]
[<inp2:m_Param name="param_name"/>]
```
2. open URL matching that template in browser
3. confirm, that in `View Source` of opened page contains:
```
[la-la]
[wow]
```