summaryrefslogtreecommitdiffstats
path: root/system/libraries/Typography.php
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-11-05 02:21:51 +0100
committerRick Ellis <rick.ellis@ellislab.com>2008-11-05 02:21:51 +0100
commit9b42253effd4f9e87774cacd9eb710a936bfe3df (patch)
treeb24faf729a9fe8196fdc5053bc785b4d63ad0305 /system/libraries/Typography.php
parent4b84a42cabee34d8daddf096881a04afc1240371 (diff)
Oops... forgot to add "tt" as in inline element
Diffstat (limited to 'system/libraries/Typography.php')
-rw-r--r--system/libraries/Typography.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php
index 0fa7d6611..fad018fd3 100644
--- a/system/libraries/Typography.php
+++ b/system/libraries/Typography.php
@@ -33,7 +33,7 @@ class CI_Typography {
var $skip_elements = 'p|pre|ol|ul|dl|object|table';
// Tags we want the parser to completely ignore when splitting the string.
- var $inline_elements = 'a|abbr|acronym|b|bdo|br|button|cite|code|del|dfn|em|i|img|ins|input|label|map|kbd|samp|select|span|strong|sub|sup|textarea|var|big|small|q';
+ var $inline_elements = 'a|abbr|acronym|b|bdo|br|button|cite|code|del|dfn|em|i|img|ins|input|label|map|kbd|samp|select|span|strong|sub|sup|textarea|var|big|small|q|tt';
// whether or not to protect quotes within { curly braces }
var $protect_braced_quotes = FALSE;