maintaining escaped HTML
I've been evaluating wikis for my company, and i'm stuck between mediawiki and tikiwiki. I far preferred TW until i ran into this problem: when i escape HTML and save the wiki page, the page renders correctly. However, when i next edit that page, the code served up in the edit textarea has replaced the escaped HTML entities with their actual entities... this means that on saving the edit, i've lost my escaped HTML with the result that my browser tries to render these tags.
for example, if i use the following code to create a code example and then save it:
<dst:criteria> <dst:content> </dst:content> </dst:criteria>
the XML tags are displayed on the wiki page.
When i edit the page, this code chunk has replaced the escaped entities with the actual entities. when i save that page, i get a box containing only .
I can use the construct <dst:criteria> to escape these tags successfully, except inside the
For my needs, this is a deal-killer. Now, even a limited wiki like xwiki has single character escaping using a backslash, so to display an xml tag i can just write \<dst:content\>.
Thanks, and I did search through the documentation and forum for this stuff but to no avail,
--derek