From: Jeff D. <da...@da...> - 2003-02-26 17:53:13
|
> I want to make wikiwords this way(*): > > $func_ladder > $rscript_mikmod You can try: $WikiNameRegexp = "(?<![[:alnum:]])\\$[_a-zA-Z]+(?![[:alnum:]])"; But that will give you links to pages named "$func_ladder" (i.e. the $ will be part of the page name.) If you want the $ to disappear, you'll have to do more serious hacking in lib/InlineParser.php --- and you're on your own, there. > I am a coder, and for some reason i hate to write docs for my apps. > Help me, please. You are not alone. Help us all, indeed! |