Is it possible to have a tabs macro be the text for a new tiddler
macro? How would I change this code?
The quotation marks are what are keeping me from moving forward, since
the outer macro is interpreting the first quote of the inner macro as
the end of the outer macro.
<<newTiddler text:"<<tabs passage3:16b
Summary "Summary of Passage 3:16" "Summary of Passage 3:16"
Paraphrase "Paraphrase of Romans 3:16" "Paraphrase of Passage 3:16"
/>/>" label:"label" tag:"tag">>
I'm afraid that doesn't work either, because the closing ">"s can't be
escaped.
However, you could use an evaluated parameter to trick the parser:
---------------
<<newTiddler text:{{"<<tabs passage3:16b Summary 'Summary of Passage
3:16' 'Summary of Passage 3:16' Paraphrase 'Paraphrase of Romans 3:16'
'Paraphrase of Passage 3:16'>"+">"}} label:"label" tag:"tag">>
---------------
-- F.
Dave.