See this page for info: http://www.mediawiki.org/wiki/Manual:Parser_functions You can return an array as so to stop the output from parsing and have it treated as html.
return array($output, 'noparse' => true, 'isHTML' => true);
~Daniel Friesen(Dantman) of: -The Gaiapedia (http://gaia.wikia.com) -Wikia ACG on Wikia.com (http://wikia.com/wiki/Wikia_ACG) -and Wiki-Tools.com (http://wiki-tools.com)
Minute Electron wrote:
On 12/30/07, Boris Steipe boris.steipe@utoronto.ca wrote:
See here:
http://www.mediawiki.org/wiki/ Manual:Tag_extensions#How_can_I_avoid_modification_of_my_extension. 27s_HTML_output.3F
:-) Boris
Thank you for the quick answer, while I am dealing with a parser function here (not a parser tag) this prompted me to further read the parser function documentation and find the relevant flag. Problem solved! :D