I hope this isn’t a "premature optimization"™ scenario, but I’m wondering about duplicate wikitext code in my documentation tiddlers. I’ll explain with an example.
Consider a tiddler named New Tiddler
. I want to document how functions work. I start with a simple wikitext snippet:
\function multiply-by-two(number)
[<number>multiply[2]]
\end
<<multiply-by-two 4>>
I want to show the code in the tiddler, then show its effect. So I copypaste everything:
\`\`\`
\function multiply-by-two(number)
[<number>multiply[2]]
\end
<<multiply-by-two 4>>
\`\`\`
renders as:
\function multiply-by-two(number)
[<number>multiply[2]]
\end
<<multiply-by-two 4>>
Note: I backslash escaped the triple backticks from the actual tiddler text so I can have nested triple backticks here in the forum. But you get the idea.
This does not work properly, since \function
pragma must be at the beginning of the text field. My tiddler content becomes:
\function multiply-by-two(number)
[<number>multiply[2]]
\end
\`\`\`
\function multiply-by-two(number)
[<number>multiply[2]]
\end
<<multiply-by-two 4>>
\`\`\`
renders as:
<<multiply-by-two 4>>
Cool, it works now. But I have a copypasted piece of text - the function definition is present twice. What if I try to extract it to another tiddler?
I create another tiddler: New Tiddler 1
and put the definition of my function there:
\function multiply-by-two(number)
[<number>multiply[2]]
\end
Now I need to modify New Tiddler
to remove the function definition from there.
For the code block piece, I can use a codeblock
widget:
\function multiply-by-two(number)
[<number>multiply[2]]
\end
<$codeblock code={{New Tiddler 1}}/>
\`\`\`
<<multiply-by-two 4>>
\`\`\`
renders as:
<<multiply-by-two 4>>
My code block is now visually split into two parts, but this is a minor inconvenience.
But trying the same trick with the actual function definition:
{{New Tiddler 1}}
<$codeblock code={{New Tiddler 1}}/>
\`\`\`
<<multiply-by-two 4>>
\`\`\`
renders as:
<<multiply-by-two 4>>
does not work
I can make it work with an \import
pragma though:
\import [[New Tiddler 1]]
<$codeblock code={{New Tiddler 1}}/>
\`\`\`
<<multiply-by-two 4>>
`\`\`
renders as:
<<multiply-by-two 4>>
After much pain, I still only solved half of the problem. What if the wikitext code block that uses the definition is not just one line <<multiply-by-two 4>>
but much bigger? This requires eliminating duplicate code again. Should I proceed the same way - extract it to another tiddler then transclude it: the regular way for executable code and the codeblock
widget way for the code block?
Even if it works, my “optimization” leaves me with three tiddlers instead of one. Is this good? Are there better ways to achieve this perhaps?