Hello guys,
I am trying to learn to manipulate TW5 and it seems to be proving a tough job. Maybe my brain is not what it used to be. Mainly I cannot find examples to learn from, and sometimes from the point where I stand right now, an example might have many different elements (mainly the widgets) that need to be understood. Anyways, I thought instead of wasting whole weekend searching and getting tired, why not ask over here. One short and quick answer might go a long way.
So I am trying to achieve what I could achieve TWC back in the day :-) ie creating 2 templates, an EventViewTemplate and an EventEditTemplate. These templates would be used on a tiddler which would be tagged 'event'.
For now I just want to know If I put this is TestViewTemplate (a practice tiddler to try out things):
------------------------------------------------------------
<$list filter="[is[current]tag[test]]">
@@background-color:yellow;
Hello, my title is {{!!title}}
@@
''this should be bold''
__this should be underlined__
|this|is|a table|
|some|data|in the table|
</$list>
-------------------------------------------------------
and then create another tiddler tagged 'test' then I notice that bold and underlining works as intended BUT the table does not render as a table. Why is this?