Searched refs:SmartyPants (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
H A Dsmartypants.php4 # SmartyPants - Smart punctuation for web sites
37 Plugin Name: SmartyPants
39 Description: SmartyPants is a web publishing utility that translates plain ASCII punctuation characters into &#8220;smart&#8221; typographic punctuation HTML entities. This plugin <strong>replace the default WordPress Texturize algorithm</strong> for the content and the title of your posts, the comments body and author name, and everywhere else Texturize normally apply. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>.
45 # Remove default Texturize filter that would conflict with SmartyPants.
54 # Add SmartyPants filter with priority 10 (same as Texturize).
55 add_filter('category_description', 'SmartyPants', 10);
56 add_filter('list_cats', 'SmartyPants', 10);
57 add_filter('comment_author', 'SmartyPants', 10);
58 add_filter('comment_text', 'SmartyPants', 10);
59 add_filter('single_post_title', 'SmartyPants', 1
72 function SmartyPants($text, $attr = NULL, $ctx = NULL) { function
[all...]
/external/libvpx/examples/includes/
H A Dvp8_doc_tools.php12 * PHP SmartyPants
32 include_once('PHP-SmartyPants-1.5.1e/smartypants.php');
/external/libvpx/examples/
H A Dgen_example_doxy.php28 if(!include_once('includes/PHP-SmartyPants-1.5.1e/smartypants.php'))
29 die("Cannot load SmartyPants transformer.\n");
91 $page_body = SmartyPants($page_body);
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php191 # Try to include PHP SmartyPants. Should be in the same directory.
197 if (function_exists('SmartyPants')) $text = SmartyPants($text);

Completed in 77 milliseconds