From 8ede1a2ecbb62577afd32996956c5feaf7ddf9b6 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 5 Oct 2011 13:34:52 -0500 Subject: replacing the old HTML user guide with a Sphinx-managed user guide --- .../source/helpers/typography_helper.rst | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 user_guide_src/source/helpers/typography_helper.rst (limited to 'user_guide_src/source/helpers/typography_helper.rst') diff --git a/user_guide_src/source/helpers/typography_helper.rst b/user_guide_src/source/helpers/typography_helper.rst new file mode 100644 index 000000000..f3202603a --- /dev/null +++ b/user_guide_src/source/helpers/typography_helper.rst @@ -0,0 +1,48 @@ +################# +Typography Helper +################# + +The Typography Helper file contains functions that help your format text +in semantically relevant ways. + +.. contents:: Page Contents + +Loading this Helper +=================== + +This helper is loaded using the following code + +:: + + $this->load->helper('typography'); + +The following functions are available: + +auto_typography() +================= + +Formats text so that it is semantically and typographically correct +HTML. Please see the :doc:`Typography Class <../libraries/typography>` +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. + +nl2br_except_pre() +================== + +Converts newlines to
tags unless they appear within
 tags.
+This function is identical to the native PHP nl2br() function, except
+that it ignores 
 tags.
+
+Usage example
+
+::
+
+	$string = nl2br_except_pre($string);
+
-- 
cgit v1.2.3-24-g4f1b