<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.3698" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I cannot figure out how to do a "WikiWord as you 
typed" option for a new pmwiki installation setup on UTF-8</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I found the following code at <A 
href="http://www.pmwiki.org/wiki/Cookbook/TitleSpaced">http://www.pmwiki.org/wiki/Cookbook/TitleSpaced</A></FONT></DIV>
<DIV><PRE>$MakePageNamePatterns = array(
    "/'/" => '',                          # strip single-quotes
    "/[^$PageNameChars\\s_]+/" => '',     # delete non-alnums
    "/\\s+/" => '_'                       # convert spaces to underline
    );
function AsSpacedAsIs($str) { return $str; }
$AsSpacedFunction = "AsSpacedAsIs";
$GroupPattern = '[\\w]*(?:-\\w+)*';
$NamePattern = '[\\w]*(?:-\\w+)*';
function RemoveUnderline($str) { return strtr($str, '_', ' '); }
$FmtPV['$Title'] = $FmtPV['$Titlespaced'] = '@$page["title"] ? $page["title"] : RemoveUnderline($name)';</PRE><PRE><FONT face=Arial size=2>It's working perfectly until I got special french caracter (יטא, ect). Display is not OK and file name seams strange. <BR></FONT><FONT face=Arial size=2>It is possible that is related to platform (development with Windows-EasyPHP).</FONT></PRE><PRE><FONT face=Arial size=2>Is there anyone that can help please?</FONT></PRE><PRE><FONT face=Arial size=2>Thanks.<BR>Caroline</FONT></PRE><PRE><FONT face=Arial size=2></FONT> </PRE></DIV></BODY></HTML>