I'm working on a static site. It works fine but I thought I'd try and make it a little more generic/flexible by grabbing the color from <<colour primary>>
Tough to explain but here we go...
I created a tiddler called $:/primary
In primary I put:
<$wikify name="output" text=<<colour primary>> mode="inline" output="html">
<$text text=<<output>>/>
</$wikify>
In my custom static.template.html I put:
{{$:/primary}}
This renders when I look at my static.template.html through tiddlywiki but {{$:/primary}} doesn't render when the static file is generated. Well, it does render but it is blank because it isn't pulling in the result of the <<colour primary>> like I want.
Can this be done?
Thanks