From: Carsten K. <car...@us...> - 2001-12-02 07:53:50
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv28142/phpwiki Modified Files: index.php Log Message: //define("autosplit_wikiwords", 1); option to automatically split WikiWords by inserting spaces for all WikiWords everywhere in a document. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** index.php 2001/12/02 03:33:28 1.31 --- index.php 2001/12/02 07:53:47 1.32 *************** *** 325,328 **** --- 325,332 ---- $InlineImages = "png|jpg|gif"; + // Uncomment this to automatically split WikiWords by inserting spaces. + // The default is to leave WordsSmashedTogetherLikeSo in the body text. + //define("autosplit_wikiwords", 1); + // Perl regexp for WikiNames ("bumpy words") // (?<!..) & (?!...) used instead of '\b' because \b matches '_' as well |