mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-20 00:34:50 +00:00
d338a54370
This is a half-way through a big refactoring of the parsing and rendering infrastructure. The main change is to separate the parse and render trees, which makes the code a lot cleaner. The new parser isn't yet functional enough to replace the existing parser so for the moment you have to manually invoke it with `$tw.testNewParser()` in your browser console. I really ought to use branches for this kind of thing...
34 lines
708 B
Plaintext
34 lines
708 B
Plaintext
title: $:/templates/NewPageTemplate
|
|
|
|
\define coolmacro(p:ridiculously) This is my $p$ cool macro!
|
|
\define me(one two)
|
|
some<br>thing
|
|
\end
|
|
\define another(first:default second third:default3) that is
|
|
|
|
* This
|
|
*.disabled Is a
|
|
* List!!
|
|
|
|
<_navigator story="$:/StoryList" history="$:/HistoryList">
|
|
|
|
<_link to="JeremyRuston" hover="HelloThere">
|
|
Go to it!
|
|
</_link>
|
|
|
|
! Heading1
|
|
!!.myclass Heading2
|
|
!!! Heading3
|
|
!!!! Heading4
|
|
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="span10">
|
|
<_list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/templates/NewViewTemplate" editTemplate="$:/templates/EditTemplate" listview=classic itemClass="tw-tiddler-frame"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</_navigator>
|