'SmartyPants Typographer', 'version' => 151, 'summary' => "Smart typography for web sites, by Michel Fortin based on SmartyPants by John Gruber. If combined with Markdown, it should be applied AFTER Markdown.", 'url' => 'http://michelf.com/projects/php-smartypants/typographer/', ); } public function format(&$str) { require_once("smartypants.php"); $str = SmartyPants($str); } }