I have several tiddlers include a table, and then want to merge them into a big table.
This code below will tranclude all texts.
<$list filter="[tag[TAG]]">
<h3><$link to=<<currentTiddler>> /> </h3>
<$transclude tiddler=<<currentTiddler>> mode="block"/>
</$list>
So I only want to transclude a part of tiddler which lines start with a vertical pipe, e.g.
| Growth stage | Description |
|00 |dry seed (seed dressing takes place at this stage) |
How could I achieve this?