TextileThis($givenstring); * * Example: get Textile-markup from a given XHTML string ($givenstring) * Please note: This method is still work in progress. * * $textile =& new Textile(); * print $textile->DeTextileThis($givenstring); * * @access public * @author Dean Allen (Original code) * @author Carlo Zottmann (Refactoring) * @package Textile * @date 9 January, 2004 * @version 2.0 beta (class version) */ /* This is Textile A Humane Web Text Generator Version 2.0 beta 8 July, 2003 Copyright (c) 2003, Dean Allen, www.textism.com All rights reserved. _______ LICENSE Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Textile nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. _____________ USING TEXTILE Block modifier syntax: Header: h(1-6). Paragraphs beginning with 'hn. ' (where n is 1-6) are wrapped in header tags. Example: h1. Header... ->

Header...

Paragraph: p. (also applied by default) Example: p. Text ->

Text

Blockquote: bq. Example: bq. Block quotation... ->
Block quotation...
Blockquote with citation: bq.:http://citation.url Example: bq.:http://textism.com/ Text... ->
Text...
Footnote: fn(1-100). Example: fn1. Footnote... ->

Footnote...

Numeric list: #, ## Consecutive paragraphs beginning with # are wrapped in ordered list tags. Example:
  1. ordered list
Bulleted list: *, ** Consecutive paragraphs beginning with * are wrapped in unordered list tags. Example: Phrase modifier syntax: _emphasis_ -> emphasis __italic__ -> italic *strong* -> strong **bold** -> bold ??citation?? -> citation -deleted text- -> deleted +inserted text+ -> inserted ^superscript^ -> superscript ~subscript~ -> subscript @code@ -> computer code %(bob)span% -> span ==notextile== -> leave text alone (do not format) "linktext":url -> linktext "linktext(title)":url -> linktext !imageurl! -> !imageurl(alt text)! -> alt text !imageurl!:linkurl -> ABC(Always Be Closing) -> ABC Table syntax: Simple tables: |a|simple|table|row| |And|Another|table|row| |_. A|_. table|_. header|_.row| |A|simple|table|row| Tables with attributes: table{border:1px solid black}. {background:#ddd;color:red}. |{}| | | | Applying Attributes: Most anywhere Textile code is used, attributes such as arbitrary css style, css classes, and ids can be applied. The syntax is fairly consistent. The following characters quickly alter the alignment of block elements: < -> left align ex. p<. left-aligned para > -> right align h3>. right-aligned header 3 = -> centred h4=. centred header 4 <> -> justified p<>. justified paragraph These will change vertical alignment in table cells: ^ -> top ex. |^. top-aligned table cell| - -> middle |-. middle aligned| ~ -> bottom |~. bottom aligned cell| Plain (parentheses) inserted between block syntax and the closing dot-space indicate classes and ids: p(hector). paragraph ->

paragraph

p(#fluid). paragraph ->

paragraph

(classes and ids can be combined) p(hector#fluid). paragraph ->

paragraph

Curly {brackets} insert arbitrary css style p{line-height:18px}. paragraph ->

paragraph

h3{color:red}. header 3 ->

header 3

Square [brackets] insert language attributes p[no]. paragraph ->

paragraph

%[fr]phrase% -> phrase Usually Textile block element syntax requires a dot and space before the block begins, but since lists don't, they can be styled just using braces #{color:blue} one ->
    # big
  1. one
  2. # list
  3. big
  4. list
Using the span tag to style a phrase It goes like this, %{color:red}the fourth the fifth% -> It goes like this, the fourth the fifth */ class Textile { var $hlgn; var $vlgn; var $clas; var $lnge; var $styl; var $cspn; var $rspn; var $a; var $s; var $c; var $pnct; function Textile() { $this->hlgn = "(?:\<(?!>)|(?|\<\>|\=|[()]+)"; $this->vlgn = "[\-^~]"; $this->clas = "(?:\([^)]+\))"; $this->lnge = "(?:\[[^]]+\])"; $this->styl = "(?:\{[^}]+\})"; $this->cspn = "(?:\\\\\d+)"; $this->rspn = "(?:\/\d+)"; $this->a = "(?:{$this->hlgn}?{$this->vlgn}?|{$this->vlgn}?{$this->hlgn}?)"; $this->s = "(?:{$this->cspn}?{$this->rspn}?|{$this->rspn}?{$this->cspn}?)"; $this->c = "(?:{$this->clas}?{$this->styl}?{$this->lnge}?|{$this->styl}?{$this->lnge}?{$this->clas}?|{$this->lnge}?{$this->styl}?{$this->clas}?)"; $this->pnct = '[\!"#\$%&\'()\*\+,\-\./:;<=>\?@\[\\\]\^_`{\|}\~]'; } function TextileThis($text, $lite = '') { if (get_magic_quotes_gpc() == 1) $text = stripslashes($text); $text = $this->incomingEntities($text); $text = $this->encodeEntities($text); $text = $this->fixEntities($text); $text = $this->cleanWhiteSpace($text); $text = $this->getRefs($text); $text = $this->noTextile($text); $text = $this->image($text); $text = $this->links($text); $text = $this->code($text); $text = $this->span($text); $text = $this->superscript($text); $text = $this->footnoteRef($text); $text = $this->glyphs($text); $text = $this->retrieve($text); if ($lite == '') { $text = $this->lists($text); $text = $this->table($text); $text = $this->block($text); } /* clean up */ $text = preg_replace('/<\/?notextile>/', "", $text); /* turn the temp char back to an ampersand entity */ $text = str_replace("x%x%", "&", $text); $text = str_replace("
", "
\n", $text); return trim($text); } // ------------------------------------------------------------- function pba($in, $element = "") // "parse block attributes" { $style = ''; $class = ''; $language = ''; $colspan = ''; $rowspan = ''; $id = ''; $atts = ''; if (!empty($in)) { $matched = $in; if ($element == 'td') { if (preg_match("/\\\\(\d+)/", $matched, $csp)) $colspan = $csp[1]; if (preg_match("/\/(\d+)/", $matched, $rsp)) $rowspan = $rsp[1]; if (preg_match("/($this->vlgn)/", $matched, $vert)) $style[] = "vertical-align:" . $this->vAlign($vert[1]) . ";"; } if (preg_match("/\{([^}]*)\}/", $matched, $sty)) { $style[] = $sty[1] . ';'; $matched = str_replace($sty[0], '', $matched); } if (preg_match("/\[([^)]+)\]/U", $matched, $lng)) { $language = $lng[1]; $matched = str_replace($lng[0], '', $matched); } if (preg_match("/\(([^()]+)\)/U", $matched, $cls)) { $class = $cls[1]; $matched = str_replace($cls[0], '', $matched); } if (preg_match("/([(]+)/", $matched, $pl)) { $style[] = "padding-left:" . strlen($pl[1]) . "em;"; $matched = str_replace($pl[0], '', $matched); } if (preg_match("/([)]+)/", $matched, $pr)) { dump($pr); $style[] = "padding-right:" . strlen($pr[1]) . "em;"; $matched = str_replace($pr[0], '', $matched); } if (preg_match("/($this->hlgn)/", $matched, $horiz)) $style[] = "text-align:" . $this->hAlign($horiz[1]) . ";"; if (preg_match("/^(.*)#(.*)$/", $class, $ids)) { $id = $ids[2]; $class = $ids[1]; } if ($style) $atts .= ' style="' . join("", $style) . '"'; if ($class) $atts .= ' class="' . $class . '"'; if ($language) $atts .= ' lang="' . $language . '"'; if ($id) $atts .= ' id="' . $id . '"'; if ($colspan) $atts .= ' colspan="' . $colspan . '"'; if ($rowspan) $atts .= ' rowspan="' . $rowspan . '"'; return $atts; } else { return ''; } } // ------------------------------------------------------------- function table($text) { $text = $text . "\n\n"; return preg_replace_callback("/^(?:table(_?{$this->s}{$this->a}{$this->c})\. ?\n)?^({$this->a}{$this->c}\.? ?\|.*\|)\n\n/smU", array(&$this, "fTable"), $text); } // ------------------------------------------------------------- function fTable($matches) { $tatts = $this->pba($matches[1], 'table'); foreach(preg_split("/\|$/m", $matches[2], -1, PREG_SPLIT_NO_EMPTY) as $row) { if (preg_match("/^($this->a$this->c\. )(.*)/m", $row, $rmtch)) { $ratts = $this->pba($rmtch[1], 'tr'); $row = $rmtch[2]; } else $ratts = ''; foreach(explode("|", $row) as $cell) { $ctyp = "d"; if (preg_match("/^_/", $cell)) $ctyp = "h"; if (preg_match("/^(_?$this->s$this->a$this->c\. )(.*)/", $cell, $cmtch)) { $catts = $this->pba($cmtch[1], 'td'); $cell = $cmtch[2]; } else $catts = ''; if (trim($cell) != '') $cells[] = "\t\t\t$cell"; } $rows[] = "\t\t\n" . join("\n", $cells) . "\n\t\t"; unset($cells, $catts); } return "\t\n" . join("\n", $rows) . "\n\t\n\n"; } // ------------------------------------------------------------- function lists($text) { return preg_replace_callback("/^([#*]+$this->c .*)$(?![^#*])/smU", array(&$this, "fList"), $text); } // ------------------------------------------------------------- function fList($m) { $text = explode("\n", $m[0]); foreach($text as $line) { $nextline = next($text); if (preg_match("/^([#*]+)($this->a$this->c) (.*)$/s", $line, $m)) { list(, $tl, $atts, $content) = $m; $nl = preg_replace("/^([#*]+)\s.*/", "$1", $nextline); if (!isset($lists[$tl])) { $lists[$tl] = true; $atts = $this->pba($atts); $line = "\t<" . $this->lT($tl) . "l$atts>\n\t
  • " . $content; } else { $line = "\t\t
  • " . $content; } if ($nl === $tl) { $line .= "
  • "; } elseif ($nl == "*" or $nl == "#") { $line .= "\n\tlT($tl) . "l>\n\t"; unset($lists[$tl]); } if (!$nl) { foreach($lists as $k => $v) { $line .= "\n\tlT($k) . "l>"; unset($lists[$k]); } } } $out[] = $line; } return join("\n", $out); } // ------------------------------------------------------------- function lT($in) { return preg_match("/^#+/", $in) ? 'o' : 'u'; } // ------------------------------------------------------------- function block($text) { $pre = false; $find = array('bq', 'h[1-6]', 'fn\d+', 'p'); $text = preg_replace("/(.+)\n(?![#*\s|])/", "$1
    ", $text); $text = explode("\n", $text); array_push($text, " "); foreach($text as $line) { if (preg_match('/
    /i', $line))
    			{
    				$pre = true;
    			}
    			foreach($find as $tag)
    			{
    				$line = ($pre == false)
    				? preg_replace_callback("/^($tag)($this->a$this->c)\.(?::(\S+))? (.*)$/",
    					array(&$this, "fBlock"), $line)
    				: $line;
    			}
    
    			$line = preg_replace('/^(?!\t|<\/?pre|<\/?code|$| )(.*)/', "\t

    $1

    ", $line); $line = ($pre == true) ? str_replace("
    ", "\n", $line):$line; if (preg_match('/<\/pre>/i', $line)) { $pre = false; } $out[] = $line; } return join("\n", $out); } // ------------------------------------------------------------- function fBlock($m) { // dump($m); list(, $tag, $atts, $cite, $content) = $m; $atts = $this->pba($atts); if (preg_match("/fn(\d+)/", $tag, $fns)) { $tag = 'p'; $atts .= ' id="fn' . $fns[1] . '"'; $content = '' . $fns[1] . ' ' . $content; } $start = "\t<$tag"; $end = ""; if ($tag == "bq") { $cite = $this->checkRefs($cite); $cite = ($cite != '') ? ' cite="' . $cite . '"' : ''; $start = "\t\n\t\t$content$end"; } // ------------------------------------------------------------- function span($text) { $qtags = array('\*\*', '\*', '\?\?', '-', '__', '_', '%', '\+', '~'); foreach($qtags as $f) { $text = preg_replace_callback("/(?<=^|\s|\>|[[:punct:]]|[{(\[]) ($f) ($this->c) (?::(\S+))? (\w.+\w) ([[:punct:]]*) $f (?=[])}]|[[:punct:]]+|\s|$) /xmU", array(&$this, "fSpan"), $text); } return $text; } // ------------------------------------------------------------- function fSpan($m) { // dump($m); $qtags = array('*' => 'b', '**' => 'strong', '??' => 'cite', '_' => 'em', '__' => 'i', '-' => 'del', '%' => 'span', '+' => 'ins', '~' => 'sub'); list(, $tag, $atts, $cite, $content, $end) = $m; $tag = $qtags[$tag]; $atts = $this->pba($atts); $atts .= ($cite != '') ? 'cite="' . $cite . '"' : ''; return "<$tag$atts>$content$end"; } // ------------------------------------------------------------- function links($text) { return preg_replace_callback('/ ([\s[{(]|[[:punct:]])? # $pre " # start (' . $this->c . ') # $atts ([^"]+) # $text \s? (?:\(([^)]+)\)(?="))? # $title ": (\S+\b) # $url (\/)? # $slash ([^\w\/;]*) # $post (?=\s|$) /Ux', array(&$this, "fLink"), $text); } // ------------------------------------------------------------- function fLink($m) { list(, $pre, $atts, $text, $title, $url, $slash, $post) = $m; $url = $this->checkRefs($url); $atts = $this->pba($atts); $atts .= ($title != '') ? ' title="' . $title . '"' : ''; $atts = ($atts != '') ? $this->shelve($atts) : ''; return $pre . '' . $text . '' . $post; } // ------------------------------------------------------------- function getRefs($text) { return preg_replace_callback("/(?<=^|\s)\[(.+)\]((?:http:\/\/|\/)\S+)(?=\s|$)/U", array(&$this, "refs"), $text); } // ------------------------------------------------------------- function refs($m) { list(, $flag, $url) = $m; $this->urlrefs[$flag] = $url; return ''; } // ------------------------------------------------------------- function checkRefs($text) { return (isset($this->urlrefs[$text])) ? $this->urlrefs[$text] : $text; } // ------------------------------------------------------------- function image($text) { return preg_replace_callback("/ \! # opening (\<|\=|\>)? # optional alignment atts ($this->c) # optional style,class atts (?:\. )? # optional dot-space ([^\s(!]+) # presume this is the src \s? # optional space (?:\(([^\)]+)\))? # optional title \! # closing (?::(\S+))? # optional href (?=\s|$) # lookahead: space or end of string /Ux", array(&$this, "fImage"), $text); } // ------------------------------------------------------------- function fImage($m) { list(, $algn, $atts, $url) = $m; $atts = $this->pba($atts); $atts .= ($algn != '') ? ' align="' . $this->iAlign($algn) . '"' : ''; $atts .= (isset($m[4])) ? ' title="' . $m[4] . '"' : ''; $atts .= (isset($m[4])) ? ' alt="' . $m[4] . '"' : ' alt=""'; $size = @getimagesize($url); if ($size) $atts .= " $size[3]"; $href = (isset($m[5])) ? $this->checkRefs($m[5]) : ''; $url = $this->checkRefs($url); $out = ''; $out .= ($href != '') ? '' : ''; $out .= ''; $out .= ($href != '') ? '' : ''; return $out; } // ------------------------------------------------------------- function code($text) { return preg_replace_callback("/ (?:^|(?<=[\s\(])|([[{])) # 1 open bracket? @ # opening (?:\|(\w+)\|)? # 2 language (.+) # 3 code @ # closing (?:$|([\]}])| (?=[[:punct:]]{1,2}| \s)) # 4 closing bracket? /Ux", array(&$this, "fCode"), $text); } // ------------------------------------------------------------- function fCode($m) { list(, $before, $lang, $code, $after) = $m; $lang = ($lang != '') ? ' language="' . $lang . '"' : ''; return $before . '' . $code . '' . $after; } // ------------------------------------------------------------- function shelve($val) { $this->shelf[] = $val; return ' <' . count($this->shelf) . '>'; } // ------------------------------------------------------------- function retrieve($text) { $i = 0; if (is_array($this->shelf)) { foreach($this->shelf as $r) { $i++; $text = str_replace("<$i>", $r, $text); } } return $text; } // ------------------------------------------------------------- function incomingEntities($text) { /* turn any incoming ampersands into a dummy character for now. This uses a negative lookahead for alphanumerics followed by a semicolon, implying an incoming html entity, to be skipped */ return preg_replace("/&(?![#a-z0-9]+;)/i", "x%x%", $text); } // ------------------------------------------------------------- function encodeEntities($text) { /* Convert high and low ascii to entities. If multibyte string functions are available (on by default in php 4.3+), we convert using unicode mapping as defined in the function encode_high(). If not, we use php's nasty built-in htmlentities() */ return (function_exists('mb_encode_numericentity')) ? encode_high($text) : htmlentities($text, ENT_NOQUOTES, "utf-8"); } // ------------------------------------------------------------- function fixEntities($text) { /* de-entify any remaining angle brackets or ampersands */ return str_replace(array(">", "<", "&"), array(">", "<", "&"), $text); } // ------------------------------------------------------------- function cleanWhiteSpace($text) { $out = str_replace(array("\r\n", "\t"), array("\n", ''), $text); $out = preg_replace("/\n{3,}/", "\n\n", $out); $out = preg_replace("/\n *\n/", "\n\n", $out); $out = preg_replace('/"$/', "\" ", $out); return $out; } // ------------------------------------------------------------- function noTextile($text) { return preg_replace('/(^|\s)==(.*)==(\s|$)?/msU', '$1$2$3', $text); } // ------------------------------------------------------------- function superscript($text) { return preg_replace('/\^(.*)\^/mU', '$1', $text); } // ------------------------------------------------------------- function footnoteRef($text) { return preg_replace('/\b\[([0-9]+)\](\s)?/U', '$1$2', $text); } // ------------------------------------------------------------- function glyphs($text) { // fix: hackish $text = preg_replace('/"\z/', "\" ", $text); $glyph_search = array('/([^\s[{(>])?\'(?(1)|(?=\s|s\b|[[:punct:]]))/', // single closing '/\'/', // single opening '/([^\s[{(>])?"(?(1)|(?=\s|[[:punct:]]))/', // double closing '/"/', // double opening '/\b( )?\.{3}/', // ellipsis '/\b([A-Z][A-Z0-9]{2,})\b(?:[(]([^)]*)[)])/', // 3+ uppercase acronym '/(^|[^"][>\s])([A-Z][A-Z0-9 ]{2,})([^$1', // 3+ uppercase acronym '$1$2$3', // 3+ uppercase caps '—', // em dash ' – ', // en dash '$1×$2', // dimension sign '™', // trademark '®', // registered '©'); // copyright $codepre = false; /* if no html, do a simple search and replace... */ if (!preg_match("/<.*>/", $text)) { $text = preg_replace($glyph_search, $glyph_replace, $text); return $text; } else { $text = preg_split("/(<.*>)/U", $text, -1, PREG_SPLIT_DELIM_CAPTURE); foreach($text as $line) { $offtags = ('code|pre|kbd|notextile'); /* matches are off if we're between ,
     etc. */
    				if (preg_match('/<(' . $offtags . ')>/i', $line)) $codepre = true;
    				if (preg_match('/<\/(' . $offtags . ')>/i', $line)) $codepre = false;
    
    				if (!preg_match("/<.*>/", $line) && $codepre == false)
    				{
    					$line = preg_replace($glyph_search, $glyph_replace, $line);
    				}
    
    				/* do htmlspecial if between  */
    				if ($codepre == true)
    				{
    					$line = htmlspecialchars($line, ENT_NOQUOTES, "UTF-8");
    					$line = preg_replace('/<(\/?' . $offtags . ')>/', "<$1>", $line);
    				}
    
    				$glyph_out[] = $line;
    			}
    			return join('', $glyph_out);
    		}
    	}
    	// -------------------------------------------------------------
    	function iAlign($in)
    	{
    		$vals = array('<' => 'left',
    			'=' => 'center',
    			'>' => 'right');
    		return (isset($vals[$in])) ? $vals[$in] : '';
    	}
    	// -------------------------------------------------------------
    	function hAlign($in)
    	{
    		$vals = array('<' => 'left',
    			'=' => 'center',
    			'>' => 'right',
    			'<>' => 'justify');
    		return (isset($vals[$in])) ? $vals[$in] : '';
    	}
    	// -------------------------------------------------------------
    	function vAlign($in)
    	{
    		$vals = array('^' => 'top',
    			'-' => 'middle',
    			'~' => 'bottom');
    		return (isset($vals[$in])) ? $vals[$in] : '';
    	}
    	// -------------------------------------------------------------
    	function encode_high($text, $charset = "UTF-8")
    	{
    		$cmap = $this->cmap();
    		return mb_encode_numericentity($text, $cmap, $charset);
    	}
    	// -------------------------------------------------------------
    	function decode_high($text, $charset = "UTF-8")
    	{
    		$cmap = $this->cmap();
    		return mb_decode_numericentity($text, $cmap, $charset);
    	}
    	// -------------------------------------------------------------
    	function cmap()
    	{
    		$f = 0xffff;
    		$cmap = array(160, 255, 0, $f,
    			402, 402, 0, $f,
    			913, 929, 0, $f,
    			931, 937, 0, $f,
    			945, 969, 0, $f,
    			977, 978, 0, $f,
    			982, 982, 0, $f,
    			8226, 8226, 0, $f,
    			8230, 8230, 0, $f,
    			8242, 8243, 0, $f,
    			8254, 8254, 0, $f,
    			8260, 8260, 0, $f,
    			8465, 8465, 0, $f,
    			8472, 8472, 0, $f,
    			8476, 8476, 0, $f,
    			8482, 8482, 0, $f,
    			8501, 8501, 0, $f,
    			8592, 8596, 0, $f,
    			8629, 8629, 0, $f,
    			8656, 8660, 0, $f,
    			8704, 8704, 0, $f,
    			8706, 8707, 0, $f,
    			8709, 8709, 0, $f,
    			8711, 8713, 0, $f,
    			8715, 8715, 0, $f,
    			8719, 8719, 0, $f,
    			8721, 8722, 0, $f,
    			8727, 8727, 0, $f,
    			8730, 8730, 0, $f,
    			8733, 8734, 0, $f,
    			8736, 8736, 0, $f,
    			8743, 8747, 0, $f,
    			8756, 8756, 0, $f,
    			8764, 8764, 0, $f,
    			8773, 8773, 0, $f,
    			8776, 8776, 0, $f,
    			8800, 8801, 0, $f,
    			8804, 8805, 0, $f,
    			8834, 8836, 0, $f,
    			8838, 8839, 0, $f,
    			8853, 8853, 0, $f,
    			8855, 8855, 0, $f,
    			8869, 8869, 0, $f,
    			8901, 8901, 0, $f,
    			8968, 8971, 0, $f,
    			9001, 9002, 0, $f,
    			9674, 9674, 0, $f,
    			9824, 9824, 0, $f,
    			9827, 9827, 0, $f,
    			9829, 9830, 0, $f,
    			338, 339, 0, $f,
    			352, 353, 0, $f,
    			376, 376, 0, $f,
    			710, 710, 0, $f,
    			732, 732, 0, $f,
    			8194, 8195, 0, $f,
    			8201, 8201, 0, $f,
    			8204, 8207, 0, $f,
    			8211, 8212, 0, $f,
    			8216, 8218, 0, $f,
    			8218, 8218, 0, $f,
    			8220, 8222, 0, $f,
    			8224, 8225, 0, $f,
    			8240, 8240, 0, $f,
    			8249, 8250, 0, $f,
    			8364, 8364, 0, $f);
    		return $cmap;
    	}
    	// -------------------------------------------------------------
    	function textile_popup_help($name, $helpvar, $windowW, $windowH)
    	{
    		return ' ' . $name . '
    '; return $out; } // ------------------------------------------------------------- function txtgps($thing) { if (isset($_POST[$thing])) { if (get_magic_quotes_gpc() == 1) { return stripslashes($_POST[$thing]); } else { return $_POST[$thing]; } } else { return ''; } } // ------------------------------------------------------------- // The following functions are used to detextile html, a process // still in development. // ------------------------------------------------------------- function DeTextileThis($text) { $text = preg_replace("/
    \s*/", "\n", $text); $oktags = array('p', 'ol', 'ul', 'li', 'i', 'b', 'em', 'strong', 'span', 'a', 'h[1-6]', 'table', 'tr', 'td', 'u', 'del', 'sup', 'sub', 'blockquote'); foreach($oktags as $tag) { $text = preg_replace_callback("/\t*<(" . $tag . ")\s*([^>]*)>(.*)<\/\\1>/Usi", array(&$this, "processTag"), $text); } $glyphs = array('’' => '\'', // single closing '‘' => '\'', // single opening '”' => '"', // double closing '“' => '"', // double opening '—' => '--', // em dash '–' => ' - ', // en dash '×' => 'x', // dimension sign '™' => '(TM)', // trademark '®' => '(R)', // registered '©' => '(C)', // copyright '…' => '...' // ellipsis ); foreach($glyphs as $f => $r) { $text = str_replace($f, $r, $text); } $list = false; $text = preg_split("/(<.*>)/U", $text, -1, PREG_SPLIT_DELIM_CAPTURE); foreach($text as $line) { if ($list == false && preg_match('/
      /U', '# ', $line); } else if ($list == 'u') { $line = preg_replace('//U', '* ', $line); } $glyph_out[] = $line; } $text = implode('', $glyph_out); $text = preg_replace('/^\t* *p\. /m', '', $text); return decode_high($text); } // ------------------------------------------------------------- function processTag($matches) { list($all, $tag, $atts, $content) = $matches; $a = $this->splat($atts); // dump($tag); dump($content); dump($a); $phr = array('em' => '_', 'i' => '__', 'b' => '**', 'strong' => '*', 'cite' => '??', 'del' => '-', 'ins' => '+', 'sup' => '^', 'sub' => '~', 'span' => '%'); $blk = array('p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'); if (isset($phr[$tag])) { return $phr[$tag] . sci($a) . $content . $phr[$tag]; } elseif ($tag == 'blockquote') { return 'bq.' . $this->sci($a) . ' ' . $content; } elseif (in_array($tag, $blk)) { return $tag . $this->sci($a) . '. ' . $content; } elseif ($tag == 'a') { $t = $this->filterAtts($a, array('href', 'title')); $out = '"' . $content; $out .= (isset($t['title'])) ? ' (' . $t['title'] . ')' : ''; $out .= '":' . $t['href']; return $out; } else { return $all; } } // ------------------------------------------------------------- function filterAtts($atts, $ok) { foreach($atts as $a) { if (in_array($a['name'], $ok)) { if ($a['att'] != '') { $out[$a['name']] = $a['att']; } } } // dump($out); return $out; } // ------------------------------------------------------------- function sci($a) { $out = ''; foreach($a as $t) { $out .= ($t['name'] == 'class') ? '(=' . $t['att'] . ')' : ''; $out .= ($t['name'] == 'id') ? '[=' . $t['att'] . ']' : ''; $out .= ($t['name'] == 'style') ? '{=' . $t['att'] . '}' : ''; $out .= ($t['name'] == 'cite') ? ':' . $t['att'] : ''; } return $out; } // ------------------------------------------------------------- function splat($attr) // returns attributes as an array { $arr = array(); $atnm = ''; $mode = 0; while (strlen($attr) != 0) { $ok = 0; switch ($mode) { case 0: // name if (preg_match('/^([a-z]+)/i', $attr, $match)) { $atnm = $match[1]; $ok = $mode = 1; $attr = preg_replace('/^[a-z]+/i', '', $attr); } break; case 1: // = if (preg_match('/^\s*=\s*/', $attr)) { $ok = 1; $mode = 2; $attr = preg_replace('/^\s*=\s*/', '', $attr); break; } if (preg_match('/^\s+/', $attr)) { $ok = 1; $mode = 0; $arr[] = array('name' => $atnm, 'whole' => $atnm, 'att' => $atnm); $attr = preg_replace('/^\s+/', '', $attr); } break; case 2: // value if (preg_match('/^("[^"]*")(\s+|$)/', $attr, $match)) { $arr[] = array('name' => $atnm, 'whole' => $atnm . '=' . $match[1], 'att' => str_replace('"', '', $match[1])); $ok = 1; $mode = 0; $attr = preg_replace('/^"[^"]*"(\s+|$)/', '', $attr); break; } if (preg_match("/^('[^']*')(\s+|$)/", $attr, $match)) { $arr[] = array('name' => $atnm, 'whole' => $atnm . '=' . $match[1], 'att' => str_replace("'", '', $match[1])); $ok = 1; $mode = 0; $attr = preg_replace("/^'[^']*'(\s+|$)/", '', $attr); break; } if (preg_match("/^(\w+)(\s+|$)/", $attr, $match)) { $arr[] = array('name' => $atnm, 'whole' => $atnm . '="' . $match[1] . '"', 'att' => $match[1]); $ok = 1; $mode = 0; $attr = preg_replace("/^\w+(\s+|$)/", '', $attr); } break; } if ($ok == 0) { $attr = preg_replace('/^\S*\s*/', '', $attr); $mode = 0; } } if ($mode == 1) $arr[] = array ('name' => $atnm, 'whole' => $atnm . '="' . $atnm . '"', 'att' => $atnm); return $arr; } } ?>