I would like to be able to include th1 code in a Fossil wiki page. Specifically, I want a particular page to display different information depending on the user. It is easy to do that in the header or footer, but I haven't found any way to insert th1 code directly into a wiki document.
Edit:
A hack that I found is to generate Javascript in the header to generate the variables using th1, like this:
<th1>
html "<script>var foo = \"$login\";</script>"
</th1>
I can then insert a Javascript call directly in the Markdown file, like this:
<script>document.write(foo);</script
Since this is a hack, and requires generating those variables in the header of every page, I would prefer to use th1 directly in the wiki page itself.