Skip to content

Instantly share code, notes, and snippets.

@dvschultz
Created October 8, 2014 17:47
Show Gist options
  • Save dvschultz/d27a86d3363effd4edd3 to your computer and use it in GitHub Desktop.
Save dvschultz/d27a86d3363effd4edd3 to your computer and use it in GitHub Desktop.
PHP implementation for em dash wrapping
/* no-wrap around em dashes */
if (preg_match("/[a-zA-Z0-9\&\#\;]{1,}?\&mdash\;/", $html)) {
$html = preg_replace("/[a-zA-Z0-9\&\#\;]{1,}?\&mdash\;/", '<span style="white-space: nowrap;">$0</span>', $html);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment