Groupings added

This commit is contained in:
Yogesh Ojha 2020-06-21 20:28:47 +05:30
parent b70c19b739
commit 5f2ce01663
1 changed files with 24 additions and 0 deletions

View File

@ -76,3 +76,27 @@ Items can be multiplied by `*`
<li></li>
</ul>
```
### Grouping
Items can be grouped together using `()`
`table>(tr>th*5)+tr>t*5`
```html
<table>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<t></t>
<t></t>
<t></t>
<t></t>
<t></t>
</tr>
</table>
```