Searched +full:deaccent -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 9 of 9) sorted by relevance
142 * Use the optional parameter to just deaccent lower ($case = -1) or upper ($case = 1)143 * letters. Default is to deaccent both cases ($case = 0)151 public static function deaccent($string, $case = 0) function in dokuwiki\\Utf8\\Clean
10 * @see \dokuwiki\Utf8\Clean::deaccent()
30 // scandinavian - differs from what we do in deaccent
183 dbg_deprecated(Clean::class . '::deaccent()');184 return Clean::deaccent($str, $case);
151 if ($conf['deaccent'] == 2 || $ascii) $id = Clean::romanize($id);152 if ($conf['deaccent'] || $ascii) $id = Clean::deaccent($id, -1);
425 $text = Clean::deaccent($text);592 $this->headers['Subject'] = Clean::deaccent($this->headers['Subject']);
49 $conf['deaccent'] = 1; //deaccented chars in pagenames (1) or romanize (2) or keep (0)?
115 $meta['deaccent'] = ['multichoice', '_choices' => [0, 1, 2], '_caution' => 'warning'];