« Layout Variables | PmWiki.Variables | Notify »
admins (advanced)
$WikiWordCountMax
$WikiWordCountMax
= 0; # disable WikiWord links$WikiWordCountMax
= 1; # convert only first WikiWord
$WikiWordCount
$WikiWordCountMax
unless a value is set in this array. By default PmWiki sets $WikiWordCount
[‘PmWiki’]=1
to limit the number of conversions of “PmWiki”.
$WikiWordCount
['PhD']=0; # Don't convert "PhD"$WikiWordCount
[‘WikiWord’]=5; # Convert WikiWord 5 times # the following lines keep a page from linking to itself $title = FmtPageName(‘$Title_’,$pagename);$WikiWordCount
[$title]=0;
$PagePathFmt
$LinkPageExistsFmt
\$LinkText
$LinkPageCreateFmt
\$LinkText ?
$LinkPageCreateSpaceFmt
$LinkPageCreateFmt
, but used when the link text has a space in it.
$LinkPageSelfFmt
\$LinkText
$UrlLinkFmt
\$LinkText
$IMapLinkFmt
$IMapLinkFmt
[‘http:’] = “\$LinkText”;
$IMapLinkFmt
[‘https:’] = “\$LinkText”;
$IMapLinkFmt
[‘PmWiki:’] = “\$LinkText”;
$IMapLinkFmt
[‘Cookbook:’] = “\$LinkText”;
$InterMapFiles
$MakePageNameFunction
$MakePageNamePatterns
$MakePageNamePatterns
is an array of regular expression replacements that is used to map the page link in a free link such as [[free link]]
into a page name. Currently the default sequence is: "/'/" => '', # strip single-quotes "/[^$PageNameChars]+/" => ' ', # convert non-alnums to spaces "/((^|[^-\\w])\\w)/e" => "strtoupper('$1')", # initial caps after spaces "/ /" => '' # strip spaces