I'm trying to create a markup recipe which takes some transliterated text and transforms<br>it into Unicode characters according to a set of regular expression rules. (This is useful<br>for languages that are easy to enter as transliterated text, such as Indic or Indian languages).<br>
<br>For example, I have the rule:<br><br> Markup("tamil",'<split','/\\(:t\s(.*?):\\)/se', "Tamilize(PSS('$1'))");<br><br>and Tamilize() uses preg_replace() to transform the text.<br>
<br>The problem is that I'd like to mix this new markup with conventional PmWiki markup to<br>make it easy to enter this text. For example:<br><br> (:t first line<br> -> second line)<br><br>where the "second line" would be indented.<br>
<br>Unfortunately, PmWiki transforms '>' into the html entity '&gt;' before my markup takes effect<br>and the characters 'g' and 't' are also transformed, and the markup doesn't have the intended<br>
effect.<br><br>I've tried moving the location to other places in the markup hierarchy, including '_begin', to no<br>avail.<br><br>Can anyone help here?<br><br>Thanks,<br>Mani<br><br><br><br>