function typogrify_space_hyphens in Typogrify 7
space_hyphens
Replaces a normal dash with em-dash between whitespaces.
1 call to typogrify_space_hyphens()
- _typogrify_process in ./
typogrify.module - Processing function to apply the Typogrify filters.
File
- ./
smartypants.php, line 1135 - SmartyPants - Smart punctuation for web sites
Code
function typogrify_space_hyphens($text) {
$tokens;
$tokens = _TokenizeHTML($text);
$result = '';
// Keep track of when we're inside <pre> or <code> tags.
$in_pre = 0;
foreach ($tokens as $cur_token) {
if ($cur_token[0] == "tag") {
// Don't mess with quotes inside tags.
$result .= $cur_token[1];
if (preg_match(SMARTYPANTS_TAGS_TO_SKIP, $cur_token[1], $matches)) {
$in_pre = isset($matches[1]) && $matches[1] == '/' ? 0 : 1;
}
}
else {
$t = $cur_token[1];
if (!$in_pre) {
$t = preg_replace("/\\s(-{1,3})\\s/", ' — ', $t);
}
$result .= $t;
}
}
return $result;
}