123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Typography {
-
- public $block_elements = 'address|blockquote|div|dl|fieldset|form|h\d|hr|noscript|object|ol|p|pre|script|table|ul';
-
- public $skip_elements = 'p|pre|ol|ul|dl|object|table|h\d';
-
- public $inline_elements = 'a|abbr|acronym|b|bdo|big|br|button|cite|code|del|dfn|em|i|img|ins|input|label|map|kbd|q|samp|select|small|span|strong|sub|sup|textarea|tt|var';
-
- public $inner_block_required = array('blockquote');
-
- public $last_block_element = '';
-
- public $protect_braced_quotes = FALSE;
-
- public function auto_typography($str, $reduce_linebreaks = FALSE)
- {
- if ($str === '')
- {
- return '';
- }
-
- if (strpos($str, "\r") !== FALSE)
- {
- $str = str_replace(array("\r\n", "\r"), "\n", $str);
- }
-
-
- if ($reduce_linebreaks === TRUE)
- {
- $str = preg_replace("/\n\n+/", "\n\n", $str);
- }
-
- $html_comments = array();
- if (strpos($str, '<!--') !== FALSE && preg_match_all('#(<!\-\-.*?\-\->)#s', $str, $matches))
- {
- for ($i = 0, $total = count($matches[0]); $i < $total; $i++)
- {
- $html_comments[] = $matches[0][$i];
- $str = str_replace($matches[0][$i], '{@HC'.$i.'}', $str);
- }
- }
-
-
- if (strpos($str, '<pre') !== FALSE)
- {
- $str = preg_replace_callback('#<pre.*?>.*?</pre>#si', array($this, '_protect_characters'), $str);
- }
-
- $str = preg_replace_callback('#<.+?>#si', array($this, '_protect_characters'), $str);
-
- if ($this->protect_braced_quotes === TRUE)
- {
- $str = preg_replace_callback('#\{.+?\}#si', array($this, '_protect_characters'), $str);
- }
-
-
-
- $str = preg_replace('#<(/*)('.$this->inline_elements.')([ >])#i', '{@TAG}\\1\\2\\3', $str);
-
- $chunks = preg_split('/(<(?:[^<>]+(?:"[^"]*"|\'[^\']*\')?)+>)/', $str, -1, PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);
-
- $str = '';
- $process = TRUE;
- for ($i = 0, $c = count($chunks) - 1; $i <= $c; $i++)
- {
-
-
- if (preg_match('#<(/*)('.$this->block_elements.').*?>#', $chunks[$i], $match))
- {
- if (preg_match('#'.$this->skip_elements.'#', $match[2]))
- {
- $process = ($match[1] === '/');
- }
- if ($match[1] === '')
- {
- $this->last_block_element = $match[2];
- }
- $str .= $chunks[$i];
- continue;
- }
- if ($process === FALSE)
- {
- $str .= $chunks[$i];
- continue;
- }
-
- if ($i === $c)
- {
- $chunks[$i] .= "\n";
- }
-
- $str .= $this->_format_newlines($chunks[$i]);
- }
-
- if ( ! preg_match('/^\s*<(?:'.$this->block_elements.')/i', $str))
- {
- $str = preg_replace('/^(.*?)<('.$this->block_elements.')/i', '<p>$1</p><$2', $str);
- }
-
- $str = $this->format_characters($str);
-
- for ($i = 0, $total = count($html_comments); $i < $total; $i++)
- {
-
-
-
- $str = preg_replace('#(?(?=<p>\{@HC'.$i.'\})<p>\{@HC'.$i.'\}(\s*</p>)|\{@HC'.$i.'\})#s', $html_comments[$i], $str);
- }
-
- $table = array(
-
-
- '/(<p[^>*?]>)<p>/' => '$1',
-
- '#(</p>)+#' => '</p>',
- '/(<p>\W*<p>)+/' => '<p>',
-
- '#<p></p><('.$this->block_elements.')#' => '<$1',
-
- '#( \s*)+<('.$this->block_elements.')#' => ' <$2',
-
- '/\{@TAG\}/' => '<',
- '/\{@DQ\}/' => '"',
- '/\{@SQ\}/' => "'",
- '/\{@DD\}/' => '--',
- '/\{@NBS\}/' => ' ',
-
-
-
-
- "/><p>\n/" => ">\n<p>",
-
-
- '#</p></#' => "</p>\n</"
- );
-
- if ($reduce_linebreaks === TRUE)
- {
- $table['#<p>\n*</p>#'] = '';
- }
- else
- {
-
-
- $table['#<p></p>#'] = '<p> </p>';
- }
- return preg_replace(array_keys($table), $table, $str);
- }
-
-
- public function format_characters($str)
- {
- static $table;
- if ( ! isset($table))
- {
- $table = array(
-
-
-
-
-
-
-
- '/\'"(\s|$)/' => '’”$1',
- '/(^|\s|<p>)\'"/' => '$1‘“',
- '/\'"(\W)/' => '’”$1',
- '/(\W)\'"/' => '$1‘“',
- '/"\'(\s|$)/' => '”’$1',
- '/(^|\s|<p>)"\'/' => '$1“‘',
- '/"\'(\W)/' => '”’$1',
- '/(\W)"\'/' => '$1“‘',
-
- '/\'(\s|$)/' => '’$1',
- '/(^|\s|<p>)\'/' => '$1‘',
- '/\'(\W)/' => '’$1',
- '/(\W)\'/' => '$1‘',
-
- '/"(\s|$)/' => '”$1',
- '/(^|\s|<p>)"/' => '$1“',
- '/"(\W)/' => '”$1',
- '/(\W)"/' => '$1“',
-
- "/(\w)'(\w)/" => '$1’$2',
-
- '/\s?\-\-\s?/' => '—',
- '/(\w)\.{3}/' => '$1…',
-
- '/(\W) /' => '$1 ',
-
- '/&(?!#?[a-zA-Z0-9]{2,};)/' => '&'
- );
- }
- return preg_replace(array_keys($table), $table, $str);
- }
-
-
- protected function _format_newlines($str)
- {
- if ($str === '' OR (strpos($str, "\n") === FALSE && ! in_array($this->last_block_element, $this->inner_block_required)))
- {
- return $str;
- }
-
- $str = str_replace("\n\n", "</p>\n\n<p>", $str);
-
- $str = preg_replace("/([^\n])(\n)([^\n])/", '\\1<br />\\2\\3', $str);
-
- if ($str !== "\n")
- {
-
-
-
- $str = '<p>'.rtrim($str).'</p>';
- }
-
-
- return preg_replace('/<p><\/p>(.*)/', '\\1', $str, 1);
- }
-
-
- protected function _protect_characters($match)
- {
- return str_replace(array("'",'"','--',' '), array('{@SQ}', '{@DQ}', '{@DD}', '{@NBS}'), $match[0]);
- }
-
-
- public function nl2br_except_pre($str)
- {
- $newstr = '';
- for ($ex = explode('pre>', $str), $ct = count($ex), $i = 0; $i < $ct; $i++)
- {
- $newstr .= (($i % 2) === 0) ? nl2br($ex[$i]) : $ex[$i];
- if ($ct - 1 !== $i)
- {
- $newstr .= 'pre>';
- }
- }
- return $newstr;
- }
- }
|