Skip to content

Instantly share code, notes, and snippets.

@damienalexandre
Created September 10, 2013 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damienalexandre/6515684 to your computer and use it in GitHub Desktop.
Save damienalexandre/6515684 to your computer and use it in GitHub Desktop.
<?php
use JoliTypo\Fixer;
$fixer = new Fixer(array("FrenchQuotes", "FrenchNoBreakSpace"));
$fixed_content = $fixer->fix('<p>Nous avons "caché" une page Goodies sur <a href="http://jolicode.com/">Jolicode.com</a> !</p>');
// Result: <p>Nous avons &laquo;&nbsp;cach&eacute;&nbsp;&raquo; une page Goodies sur <a href="http://jolicode.com/">Jolicode.com</a>&#8239;!</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment