sample Textile markup pages. You can protect HTML code from this plugin by enclosing it between <protect> and </protect> tags."; /** Is the plugin allowed with respect to a given write permission on a page ? * * @param $wperms */ function allow_wperms($wperms) { return 1; } /** Take the Wiki markup and return XHTML. * * @param $input */ function filter($input) { $textile = new Textile(); $data = htmlProtectFromTextism($input); $data = $textile->TextileThis($data); return htmlUnprotectFromTextism($data); } } ?>