1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
<?php
require_once('markdown.php');
define( 'MARKDOWNEXTRAEXTENDED_VERSION', "0.3" );
function MarkdownExtended($text, $default_claases = array()){
$parser = new MarkdownExtraExtended_Parser($default_claases);
return $parser->transform($text);
}
class MarkdownExtraExtended_Parser extends MarkdownExtra_Parser {
# Tags that are always treated as block tags:
var $block_tags_re = 'figure|figcaption|p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|address|form|fieldset|iframe|hr|legend';
var $default_classes;
function __construct($default_classes = array()) {
$this->block_gamut += array(
"doFencedFigures" => 7,
);
MarkdownExtra_Parser::__construct();
}
function transform($text) {
$text = parent::transform($text);
return $text;
}
function doHardBreaks($text) {
# Do hard breaks:
# EXTENDED: changed to allow breaks without two spaces and just one new line
# original code /* return preg_replace_callback('/ {2,}\n/', */
// Remove double newlines that remain
$text = preg_replace_callback('/\n\n/',
array(&$this, '_doHardBreaks_callback'), $text);
return preg_replace_callback('/ *\n/',
array(&$this, '_doHardBreaks_callback'), $text);
}
function doBlockQuotes($text) {
$text = preg_replace_callback('/
(?>^[ ]*>[ ]?
(?:\((.+?)\))?
[ ]*(.+\n(?:.+\n)*)
)+
/xm',
array(&$this, '_doBlockQuotes_callback'), $text);
return $text;
}
function _doBlockQuotes_callback($matches) {
$cite = $matches[1];
$bq = '> ' . $matches[2];
# trim one level of quoting - trim whitespace-only lines
$bq = preg_replace('/^[ ]*>[ ]?|^[ ]+$/m', '', $bq);
$bq = $this->runBlockGamut($bq); # recurse
$bq = preg_replace('/^/m', " ", $bq);
# These leading spaces cause problem with <pre> content,
# so we need to fix that:
$bq = preg_replace_callback('{(\s*<pre>.+?</pre>)}sx',
array(&$this, '_doBlockQuotes_callback2'), $bq);
$res = "<blockquote";
$res .= empty($cite) ? ">" : " cite=\"$cite\">";
$res .= "\n$bq\n</blockquote>";
return "\n". $this->hashBlock($res)."\n\n";
}
function doFencedCodeBlocks($text) {
$less_than_tab = $this->tab_width;
$text = preg_replace_callback('{
(?:\n|\A)
# 1: Opening marker
(
~{3,}|`{3,} # Marker: three tilde or more.
)
[ ]?([\w\#]+)?(?:,[ ]?(\d+))?[ ]* \n # Whitespace and newline following marker.
# 3: Content
(
(?>
(?!\1 [ ]* \n) # Not a closing marker.
.*\n+
)+
)
# Closing marker.
\1 [ ]* \n
}xm',
array(&$this, '_doFencedCodeBlocks_callback'), $text);
return $text;
}
function _doFencedCodeBlocks_callback($matches) {
$codeblock = $matches[4];
$codeblock = htmlspecialchars($codeblock, ENT_NOQUOTES);
$codeblock = preg_replace_callback('/^\n+/',
array(&$this, '_doFencedCodeBlocks_newlines'), $codeblock);
//$codeblock = "<pre><code>$codeblock</code></pre>";
//$cb = "<pre><code";
$cb = empty($matches[3]) ? "<pre><code" : "<pre class=\"linenums:$matches[3]\"><code";
$cb .= empty($matches[2]) ? " class=\"multiline\">" : " class=\"multiline language-$matches[2]\">";
$cb .= "$codeblock</code></pre>";
return "\n\n".$this->hashBlock($cb)."\n\n";
}
function doFencedFigures($text){
$text = preg_replace_callback('{
(?:\n|\A)
# 1: Opening marker
(
={3,} # Marker: equal sign.
)
[ ]?(?:\[([^\]]+)\])?[ ]* \n # Whitespace and newline following marker.
# 3: Content
(
(?>
(?!\1 [ ]?(?:\[([^\]]+)\])?[ ]* \n) # Not a closing marker.
.*\n+
)+
)
# Closing marker.
\1 [ ]?(?:\[([^\]]+)\])?[ ]* \n
}xm', array(&$this, '_doFencedFigures_callback'), $text);
return $text;
}
function _doFencedFigures_callback($matches) {
# get figcaption
$topcaption = empty($matches[2]) ? null : $this->runBlockGamut($matches[2]);
$bottomcaption = empty($matches[5]) ? null : $this->runBlockGamut($matches[5]);
$figure = $matches[3];
$figure = $this->runBlockGamut($figure); # recurse
$figure = preg_replace('/^/m', " ", $figure);
# These leading spaces cause problem with <pre> content,
# so we need to fix that - reuse blockqoute code to handle this:
$figure = preg_replace_callback('{(\s*<pre>.+?</pre>)}sx',
array(&$this, '_doBlockQuotes_callback2'), $figure);
$res = "<figure>";
if(!empty($topcaption)){
$res .= "\n<figcaption>$topcaption</figcaption>";
}
$res .= "\n$figure\n";
if(!empty($bottomcaption) && empty($topcaption)){
$res .= "<figcaption>$bottomcaption</figcaption>";
}
$res .= "</figure>";
return "\n". $this->hashBlock($res)."\n\n";
}
}
?>
|