While looking for a way to escape a `|` inside a table cell (using the pipe table syntax, not the HTML syntax) I discovered that the literal block `%%%` syntax doesn't work inside tables.
Side question: //Is there// a way to escape `|` inside a table cell when using the pipe syntax?
Example of markup I expect to work.
```
lang=html
| asdf | %%%asdf ||%%% |
<table><tr><td>%%%inside
literal%%%</td></tr></table>
```
Rendered preview:
| asdf | %%%asdf ||%%% |
<table><tr><td>%%%inside
literal%%%</td></tr></table>