function StupefyEntities in Typogrify 6
Same name and namespace in other branches
- 5 smartypants.php \StupefyEntities()
- 7 smartypants.php \StupefyEntities()
1 call to StupefyEntities()
- SmartyPants in ./smartypants.php
File
- ./smartypants.php, line 560
- smartypants.php
SmartyPants - Smart punctuation for web sites
Code
function StupefyEntities($_) {
$_ = str_replace(array(
'–',
'—',
), array(
'-',
'--',
), $_);
$_ = str_replace(array(
'‘',
'’',
), "'", $_);
$_ = str_replace(array(
'“',
'”',
), '"', $_);
$_ = str_replace('…', '...', $_);
return $_;
}