Currently when you apply the tag $:/tags/ViewTemplate to a tiddler, it will be applied to a subset of tiddlers.
Tiddler: $:/user/viewtemplate/database
<$list filter="[is[current]tag[Database]]">
!! <$view field="caption"/>
|!Type|<$view field="db_type"/>|
|!Host|<$view field="db_host"/>|
|!Port|<$view field="db_port"/>|
|!Schema|<$view field="db_schema"/>|
</$list>
Tiddler: mySQL Database
Tags: $:/tags/ViewTemplate
Text: > Important Note
How It’s Displayed
> Important Note
!! Database Caption
| Type | example |
| Host | example |
| Port | 1234 |
| Schema | example |
The Question
The ViewTemplate is applied after the text of the Tiddler is rendered. Is there any way to display the ViewTemplate first and then any content in the text of the Tiddler after?
For Example:
!! Database Caption
| Type | example |
| Host | example |
| Port | 1234 |
| Schema | example |
> Important Note