On Tue, Mar 04, 2008 at 07:17:50AM +0100, Patrick Ogay wrote: > I a recipe I generate a text, with a tag like: > (:generatesometextdependingonsomething:) > And I like to format it like in pmwiki edit. > > I tryed, concatinated in my $files string: > > $src = "'''Titel'''"; > $fmt = FmtPageName($src, $pagename); <==== > $files .= "$pagename-$src"; > $files .= $fmt; > return $files; > > Result is > SandBox-'''Titel''''''Titel''' (should instead of Bold) on site
When is the (:generatesometextdependingonsomething:) markup being processed? If it's being done after the "inline" markups (i.e., the ones that handle '''), then PmWiki won't see the ''' and convert them to bold. Pm _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users
