CodeIgniter User Guide Version 2.2.6 |
Table of Contents Page |
CodeIgniter Home › User Guide Home › Typography Helper |
The Typography Helper file contains functions that help your format text in semantically relevant ways.
This helper is loaded using the following code:
$this->load->helper('typography');
The following functions are available:
Formats text so that it is semantically and typographically correct HTML. Please see the Typography Class for more info.
Usage example:
$string = auto_typography($string);
Note: Typographic formatting can be processor intensive, particularly if you have a lot of content being formatted. If you choose to use this function you may want to consider caching your pages.
Converts newlines to <br /> tags unless they appear within <pre> tags. This function is identical to the native PHP nl2br() function, except that it ignores <pre> tags.
Usage example:
$string = nl2br_except_pre($string);
Previous Topic: Text Helper · Top of Page · User Guide Home · Next Topic: URL Helper
CodeIgniter · Copyright © 2006 - 2014 · EllisLab, Inc. · Copyright © 2014 - 2015 · British Columbia Institute of Technology