I have the ExternalTiddlerPlugin installed. I'm trying to get the
tiddler macro to evaluate the contents of a separate tiddler in order
to determine what tiddler will be imported. Here's what I have tried
so far:
<<tiddler {{"return store.getTiddlerSlice('PagePick','page')+'#3'
"}} >>
<<tiddler {{"store.getTiddlerSlice('PagePick','page')+'#3' ; "}} >>
<<tiddler [[PagePick::page]]#3 >>
I've tried other versions. None of these have worked so far. As a
check, I ran the script:
<script>
return store.getTiddlerSlice('PagePick','page')+'#3' ;
</script>
and it returns the correct response:
killthis.html#3
And yes, "killthis.html" exists in the same directory, and has a
tiddler called "3".
In fact, I can do exactly what I want if I construct the macro on the
fly like:
<script>
return "<<tiddler " + store.getTiddlerSlice('PagePick','page')+'#3' +
" >>" ;
</script>
But somehow that seems clumsier than it ought to be.
Thanks in advance,
Mark