From 6c7a4266410070d30f8f6bcdf9c9e67f3d6478e3 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Mon, 19 Jun 2017 11:33:58 +0300 Subject: [ci skip] 3.1.5 release --- .../source/helpers/typography_helper.rst | 75 ---------------------- 1 file changed, 75 deletions(-) delete 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 deleted file mode 100644 index 89730b03d..000000000 --- a/user_guide_src/source/helpers/typography_helper.rst +++ /dev/null @@ -1,75 +0,0 @@ -################# -Typography Helper -################# - -The Typography Helper file contains functions that help your format text -in semantically relevant ways. - -.. contents:: - :local: - -.. raw:: html - -
- -Loading this Helper -=================== - -This helper is loaded using the following code:: - - $this->load->helper('typography'); - -Available Functions -=================== - -The following functions are available: - - -.. php:function:: auto_typography($str[, $reduce_linebreaks = FALSE]) - - :param string $str: Input string - :param bool $reduce_linebreaks: Whether to reduce multiple instances of double newlines to two - :returns: HTML-formatted typography-safe string - :rtype: string - - Formats text so that it is semantically and typographically correct - HTML. - - This function is an alias for ``CI_Typography::auto_typography()``. - For more info, please see the :doc:`Typography Library - <../libraries/typography>` documentation. - - 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 :doc:`caching <../general/caching>` your - pages. - - -.. php:function:: nl2br_except_pre($str) - - :param string $str: Input string - :returns: String with HTML-formatted line breaks - :rtype: string - - 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);
-
-.. php:function:: entity_decode($str, $charset = NULL)
-
-	:param	string	$str: Input string
-	:param	string	$charset: Character set
-	:returns:	String with decoded HTML entities
-	:rtype:	string
-
-	This function is an alias for ``CI_Security::entity_decode()``.
-	Fore more info, please see the :doc:`Security Library
-	<../libraries/security>` documentation.
\ No newline at end of file
-- 
cgit v1.2.3-24-g4f1b