OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SmartyPants
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php
4
#
SmartyPants
- Smart punctuation for web sites
37
Plugin Name:
SmartyPants
38
Plugin URI: http://www.michelf.com/projects/php-
smartypants
/
39
Description:
SmartyPants
is a web publishing utility that translates plain ASCII punctuation characters into “smart” 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)
[
all
...]
/external/libvpx/libvpx/examples/
gen_example_doxy.php
28
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/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php
191
# Try to include PHP
SmartyPants
. Should be in the same directory.
192
@include_once '
smartypants
.php';
197
if (function_exists('
SmartyPants
')) $text =
SmartyPants
($text);
[
all
...]
Completed in 31 milliseconds