@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | $this->abbr_desciptions = array(); |
| 206 | 206 | $this->abbr_word_re = ''; |
| 207 | 207 | |
| 208 | - if ( ! $this->omit_footnotes ) |
|
| 208 | + if (!$this->omit_footnotes) |
|
| 209 | 209 | $this->footnotes_assembled = null; |
| 210 | 210 | |
| 211 | 211 | parent::teardown(); |
@@ -273,13 +273,13 @@ discard block |
||
| 273 | 273 | // Compose attributes as string |
| 274 | 274 | $attr_str = ""; |
| 275 | 275 | if (!empty($id)) { |
| 276 | - $attr_str .= ' id="'.$this->encodeAttribute($id) .'"'; |
|
| 276 | + $attr_str .= ' id="' . $this->encodeAttribute($id) . '"'; |
|
| 277 | 277 | } |
| 278 | 278 | if (!empty($classes)) { |
| 279 | - $attr_str .= ' class="'. implode(" ", $classes) . '"'; |
|
| 279 | + $attr_str .= ' class="' . implode(" ", $classes) . '"'; |
|
| 280 | 280 | } |
| 281 | 281 | if (!$this->no_markup && !empty($attributes)) { |
| 282 | - $attr_str .= ' '.implode(" ", $attributes); |
|
| 282 | + $attr_str .= ' ' . implode(" ", $attributes); |
|
| 283 | 283 | } |
| 284 | 284 | return $attr_str; |
| 285 | 285 | } |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | |
| 296 | 296 | // Link defs are in the form: ^[id]: url "optional title" |
| 297 | 297 | $text = preg_replace_callback('{ |
| 298 | - ^[ ]{0,'.$less_than_tab.'}\[(.+)\][ ]?: # id = $1 |
|
| 298 | + ^[ ]{0,'.$less_than_tab . '}\[(.+)\][ ]?: # id = $1 |
|
| 299 | 299 | [ ]* |
| 300 | 300 | \n? # maybe *one* newline |
| 301 | 301 | [ ]* |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | [")] |
| 315 | 315 | [ ]* |
| 316 | 316 | )? # title is optional |
| 317 | - (?:[ ]* '.$this->id_class_attr_catch_re.' )? # $5 = extra id & class attr |
|
| 317 | + (?:[ ]* '.$this->id_class_attr_catch_re . ' )? # $5 = extra id & class attr |
|
| 318 | 318 | (?:\n+|\Z) |
| 319 | 319 | }xm', |
| 320 | 320 | array($this, '_stripLinkDefinitions_callback'), |
@@ -331,8 +331,8 @@ discard block |
||
| 331 | 331 | $link_id = strtolower($matches[1]); |
| 332 | 332 | $url = $matches[2] == '' ? $matches[3] : $matches[2]; |
| 333 | 333 | $this->urls[$link_id] = $url; |
| 334 | - $this->titles[$link_id] =& $matches[4]; |
|
| 335 | - $this->ref_attr[$link_id] = $this->doExtraAttributes("", $dummy =& $matches[5]); |
|
| 334 | + $this->titles[$link_id] = & $matches[4]; |
|
| 335 | + $this->ref_attr[$link_id] = $this->doExtraAttributes("", $dummy = & $matches[5]); |
|
| 336 | 336 | return ''; // String that will replace the block |
| 337 | 337 | } |
| 338 | 338 | |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | } |
| 396 | 396 | |
| 397 | 397 | // Call the HTML-in-Markdown hasher. |
| 398 | - list($text, ) = $this->_hashHTMLBlocks_inMarkdown($text); |
|
| 398 | + list($text,) = $this->_hashHTMLBlocks_inMarkdown($text); |
|
| 399 | 399 | |
| 400 | 400 | return $text; |
| 401 | 401 | } |
@@ -472,7 +472,7 @@ discard block |
||
| 472 | 472 | <\?.*?\?> | <%.*?%> # Processing instruction |
| 473 | 473 | | |
| 474 | 474 | <!\[CDATA\[.*?\]\]> # CData Block |
| 475 | - ' . ( !$span ? ' # If not in span. |
|
| 475 | + ' . (!$span ? ' # If not in span. |
|
| 476 | 476 | | |
| 477 | 477 | # Indented code block |
| 478 | 478 | (?: ^[ ]*\n | ^ | \n[ ]*\n ) |
@@ -490,7 +490,7 @@ discard block |
||
| 490 | 490 | (?: ' . $this->id_class_attr_nocatch_re . ' )? # extra attributes |
| 491 | 491 | [ ]* |
| 492 | 492 | (?= \n ) |
| 493 | - ' : '' ) . ' # End (if not is span). |
|
| 493 | + ' : '') . ' # End (if not is span). |
|
| 494 | 494 | | |
| 495 | 495 | # Code span marker |
| 496 | 496 | # Note, this regex needs to go after backtick fenced |
@@ -501,8 +501,8 @@ discard block |
||
| 501 | 501 | }xs'; |
| 502 | 502 | |
| 503 | 503 | |
| 504 | - $depth = 0; // Current depth inside the tag tree. |
|
| 505 | - $parsed = ""; // Parsed text that will be returned. |
|
| 504 | + $depth = 0; // Current depth inside the tag tree. |
|
| 505 | + $parsed = ""; // Parsed text that will be returned. |
|
| 506 | 506 | |
| 507 | 507 | // Loop through every tag until we find the closing tag of the parent |
| 508 | 508 | // or loop until reaching the end of text if no parent tag specified. |
@@ -579,9 +579,9 @@ discard block |
||
| 579 | 579 | // Opening Context Block tag (like ins and del) |
| 580 | 580 | // used as a block tag (tag is alone on it's line). |
| 581 | 581 | else if (preg_match('{^<(?:' . $this->block_tags_re . ')\b}', $tag) || |
| 582 | - ( preg_match('{^<(?:' . $this->context_block_tags_re . ')\b}', $tag) && |
|
| 582 | + (preg_match('{^<(?:' . $this->context_block_tags_re . ')\b}', $tag) && |
|
| 583 | 583 | preg_match($newline_before_re, $parsed) && |
| 584 | - preg_match($newline_after_re, $text) ) |
|
| 584 | + preg_match($newline_after_re, $text)) |
|
| 585 | 585 | ) |
| 586 | 586 | { |
| 587 | 587 | // Need to parse tag and following text using the HTML parser. |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | // Increase/decrease nested tag count. |
| 612 | 612 | if ($tag[1] === '/') { |
| 613 | 613 | $depth--; |
| 614 | - } else if ($tag[strlen($tag)-2] !== '/') { |
|
| 614 | + } else if ($tag[strlen($tag) - 2] !== '/') { |
|
| 615 | 615 | $depth++; |
| 616 | 616 | } |
| 617 | 617 | |
@@ -688,11 +688,11 @@ discard block |
||
| 688 | 688 | ) |
| 689 | 689 | }xs'; |
| 690 | 690 | |
| 691 | - $original_text = $text; // Save original text in case of faliure. |
|
| 691 | + $original_text = $text; // Save original text in case of faliure. |
|
| 692 | 692 | |
| 693 | - $depth = 0; // Current depth inside the tag tree. |
|
| 694 | - $block_text = ""; // Temporary text holder for current text. |
|
| 695 | - $parsed = ""; // Parsed text that will be returned. |
|
| 693 | + $depth = 0; // Current depth inside the tag tree. |
|
| 694 | + $block_text = ""; // Temporary text holder for current text. |
|
| 695 | + $parsed = ""; // Parsed text that will be returned. |
|
| 696 | 696 | $base_tag_name_re = ''; |
| 697 | 697 | |
| 698 | 698 | // Get the name of the starting tag. |
@@ -734,7 +734,7 @@ discard block |
||
| 734 | 734 | if (preg_match('{^</?' . $base_tag_name_re . '\b}', $tag)) { |
| 735 | 735 | if ($tag[1] === '/') { |
| 736 | 736 | $depth--; |
| 737 | - } else if ($tag[strlen($tag)-2] !== '/') { |
|
| 737 | + } else if ($tag[strlen($tag) - 2] !== '/') { |
|
| 738 | 738 | $depth++; |
| 739 | 739 | } |
| 740 | 740 | } |
@@ -888,9 +888,9 @@ discard block |
||
| 888 | 888 | * @return string |
| 889 | 889 | */ |
| 890 | 890 | protected function _doAnchors_reference_callback($matches) { |
| 891 | - $whole_match = $matches[1]; |
|
| 892 | - $link_text = $matches[2]; |
|
| 893 | - $link_id =& $matches[3]; |
|
| 891 | + $whole_match = $matches[1]; |
|
| 892 | + $link_text = $matches[2]; |
|
| 893 | + $link_id = & $matches[3]; |
|
| 894 | 894 | |
| 895 | 895 | if ($link_id == "") { |
| 896 | 896 | // for shortcut links like [this][] or [this]. |
@@ -906,10 +906,10 @@ discard block |
||
| 906 | 906 | $url = $this->encodeURLAttribute($url); |
| 907 | 907 | |
| 908 | 908 | $result = "<a href=\"$url\""; |
| 909 | - if ( isset( $this->titles[$link_id] ) ) { |
|
| 909 | + if (isset($this->titles[$link_id])) { |
|
| 910 | 910 | $title = $this->titles[$link_id]; |
| 911 | 911 | $title = $this->encodeAttribute($title); |
| 912 | - $result .= " title=\"$title\""; |
|
| 912 | + $result .= " title=\"$title\""; |
|
| 913 | 913 | } |
| 914 | 914 | if (isset($this->ref_attr[$link_id])) |
| 915 | 915 | $result .= $this->ref_attr[$link_id]; |
@@ -930,10 +930,10 @@ discard block |
||
| 930 | 930 | * @return string |
| 931 | 931 | */ |
| 932 | 932 | protected function _doAnchors_inline_callback($matches) { |
| 933 | - $link_text = $this->runSpanGamut($matches[2]); |
|
| 934 | - $url = $matches[3] === '' ? $matches[4] : $matches[3]; |
|
| 935 | - $title =& $matches[7]; |
|
| 936 | - $attr = $this->doExtraAttributes("a", $dummy =& $matches[8]); |
|
| 933 | + $link_text = $this->runSpanGamut($matches[2]); |
|
| 934 | + $url = $matches[3] === '' ? $matches[4] : $matches[3]; |
|
| 935 | + $title = & $matches[7]; |
|
| 936 | + $attr = $this->doExtraAttributes("a", $dummy = & $matches[8]); |
|
| 937 | 937 | |
| 938 | 938 | // if the URL was of the form <s p a c e s> it got caught by the HTML |
| 939 | 939 | // tag parser and hashed. Need to reverse the process before using the URL. |
@@ -946,7 +946,7 @@ discard block |
||
| 946 | 946 | $result = "<a href=\"$url\""; |
| 947 | 947 | if (isset($title) && strlen($title)) { |
| 948 | 948 | $title = $this->encodeAttribute($title); |
| 949 | - $result .= " title=\"$title\""; |
|
| 949 | + $result .= " title=\"$title\""; |
|
| 950 | 950 | } |
| 951 | 951 | $result .= $attr; |
| 952 | 952 | |
@@ -1032,7 +1032,7 @@ discard block |
||
| 1032 | 1032 | if (isset($this->titles[$link_id])) { |
| 1033 | 1033 | $title = $this->titles[$link_id]; |
| 1034 | 1034 | $title = $this->encodeAttribute($title); |
| 1035 | - $result .= " title=\"$title\""; |
|
| 1035 | + $result .= " title=\"$title\""; |
|
| 1036 | 1036 | } |
| 1037 | 1037 | if (isset($this->ref_attr[$link_id])) { |
| 1038 | 1038 | $result .= $this->ref_attr[$link_id]; |
@@ -1054,17 +1054,17 @@ discard block |
||
| 1054 | 1054 | * @return string |
| 1055 | 1055 | */ |
| 1056 | 1056 | protected function _doImages_inline_callback($matches) { |
| 1057 | - $alt_text = $matches[2]; |
|
| 1057 | + $alt_text = $matches[2]; |
|
| 1058 | 1058 | $url = $matches[3] === '' ? $matches[4] : $matches[3]; |
| 1059 | - $title =& $matches[7]; |
|
| 1060 | - $attr = $this->doExtraAttributes("img", $dummy =& $matches[8]); |
|
| 1059 | + $title = & $matches[7]; |
|
| 1060 | + $attr = $this->doExtraAttributes("img", $dummy = & $matches[8]); |
|
| 1061 | 1061 | |
| 1062 | 1062 | $alt_text = $this->encodeAttribute($alt_text); |
| 1063 | 1063 | $url = $this->encodeURLAttribute($url); |
| 1064 | 1064 | $result = "<img src=\"$url\" alt=\"$alt_text\""; |
| 1065 | 1065 | if (isset($title)) { |
| 1066 | 1066 | $title = $this->encodeAttribute($title); |
| 1067 | - $result .= " title=\"$title\""; // $title already quoted |
|
| 1067 | + $result .= " title=\"$title\""; // $title already quoted |
|
| 1068 | 1068 | } |
| 1069 | 1069 | $result .= $attr; |
| 1070 | 1070 | $result .= $this->empty_element_suffix; |
@@ -1102,7 +1102,7 @@ discard block |
||
| 1102 | 1102 | // |
| 1103 | 1103 | $text = preg_replace_callback('{ |
| 1104 | 1104 | ^(\#{1,6}) # $1 = string of #\'s |
| 1105 | - [ ]'.($this->hashtag_protection ? '+' : '*').' |
|
| 1105 | + [ ]'.($this->hashtag_protection ? '+' : '*') . ' |
|
| 1106 | 1106 | (.+?) # $2 = Header text |
| 1107 | 1107 | [ ]* |
| 1108 | 1108 | \#* # optional closing #\'s (not counted) |
@@ -1129,7 +1129,7 @@ discard block |
||
| 1129 | 1129 | |
| 1130 | 1130 | $defaultId = is_callable($this->header_id_func) ? call_user_func($this->header_id_func, $matches[1]) : null; |
| 1131 | 1131 | |
| 1132 | - $attr = $this->doExtraAttributes("h$level", $dummy =& $matches[2], $defaultId); |
|
| 1132 | + $attr = $this->doExtraAttributes("h$level", $dummy = & $matches[2], $defaultId); |
|
| 1133 | 1133 | $block = "<h$level$attr>" . $this->runSpanGamut($matches[1]) . "</h$level>"; |
| 1134 | 1134 | return "\n" . $this->hashBlock($block) . "\n\n"; |
| 1135 | 1135 | } |
@@ -1143,7 +1143,7 @@ discard block |
||
| 1143 | 1143 | $level = strlen($matches[1]); |
| 1144 | 1144 | |
| 1145 | 1145 | $defaultId = is_callable($this->header_id_func) ? call_user_func($this->header_id_func, $matches[2]) : null; |
| 1146 | - $attr = $this->doExtraAttributes("h$level", $dummy =& $matches[3], $defaultId); |
|
| 1146 | + $attr = $this->doExtraAttributes("h$level", $dummy = & $matches[3], $defaultId); |
|
| 1147 | 1147 | $block = "<h$level$attr>" . $this->runSpanGamut($matches[2]) . "</h$level>"; |
| 1148 | 1148 | return "\n" . $this->hashBlock($block) . "\n\n"; |
| 1149 | 1149 | } |
@@ -1214,8 +1214,8 @@ discard block |
||
| 1214 | 1214 | * @return string |
| 1215 | 1215 | */ |
| 1216 | 1216 | protected function _doTable_leadingPipe_callback($matches) { |
| 1217 | - $head = $matches[1]; |
|
| 1218 | - $underline = $matches[2]; |
|
| 1217 | + $head = $matches[1]; |
|
| 1218 | + $underline = $matches[2]; |
|
| 1219 | 1219 | $content = $matches[3]; |
| 1220 | 1220 | |
| 1221 | 1221 | $content = preg_replace('/^ *[|]/m', '', $content); |
@@ -1243,14 +1243,14 @@ discard block |
||
| 1243 | 1243 | * @return string |
| 1244 | 1244 | */ |
| 1245 | 1245 | protected function _doTable_callback($matches) { |
| 1246 | - $head = $matches[1]; |
|
| 1247 | - $underline = $matches[2]; |
|
| 1248 | - $content = $matches[3]; |
|
| 1246 | + $head = $matches[1]; |
|
| 1247 | + $underline = $matches[2]; |
|
| 1248 | + $content = $matches[3]; |
|
| 1249 | 1249 | |
| 1250 | 1250 | // Remove any tailing pipes for each line. |
| 1251 | - $head = preg_replace('/[|] *$/m', '', $head); |
|
| 1252 | - $underline = preg_replace('/[|] *$/m', '', $underline); |
|
| 1253 | - $content = preg_replace('/[|] *$/m', '', $content); |
|
| 1251 | + $head = preg_replace('/[|] *$/m', '', $head); |
|
| 1252 | + $underline = preg_replace('/[|] *$/m', '', $underline); |
|
| 1253 | + $content = preg_replace('/[|] *$/m', '', $content); |
|
| 1254 | 1254 | |
| 1255 | 1255 | // Reading alignement from header underline. |
| 1256 | 1256 | $separators = preg_split('/ *[|] */', $underline); |
@@ -1267,10 +1267,10 @@ discard block |
||
| 1267 | 1267 | |
| 1268 | 1268 | // Parsing span elements, including code spans, character escapes, |
| 1269 | 1269 | // and inline HTML tags, so that pipes inside those gets ignored. |
| 1270 | - $head = $this->parseSpan($head); |
|
| 1271 | - $headers = preg_split('/ *[|] */', $head); |
|
| 1272 | - $col_count = count($headers); |
|
| 1273 | - $attr = array_pad($attr, $col_count, ''); |
|
| 1270 | + $head = $this->parseSpan($head); |
|
| 1271 | + $headers = preg_split('/ *[|] */', $head); |
|
| 1272 | + $col_count = count($headers); |
|
| 1273 | + $attr = array_pad($attr, $col_count, ''); |
|
| 1274 | 1274 | |
| 1275 | 1275 | // Write column headers. |
| 1276 | 1276 | $text = "<table>\n"; |
@@ -1438,13 +1438,13 @@ discard block |
||
| 1438 | 1438 | protected function _processDefListItems_callback_dd($matches) { |
| 1439 | 1439 | $leading_line = $matches[1]; |
| 1440 | 1440 | $marker_space = $matches[2]; |
| 1441 | - $def = $matches[3]; |
|
| 1441 | + $def = $matches[3]; |
|
| 1442 | 1442 | |
| 1443 | 1443 | if ($leading_line || preg_match('/\n{2,}/', $def)) { |
| 1444 | 1444 | // Replace marker with the appropriate whitespace indentation |
| 1445 | 1445 | $def = str_repeat(' ', strlen($marker_space)) . $def; |
| 1446 | 1446 | $def = $this->runBlockGamut($this->outdent($def . "\n\n")); |
| 1447 | - $def = "\n". $def ."\n"; |
|
| 1447 | + $def = "\n" . $def . "\n"; |
|
| 1448 | 1448 | } |
| 1449 | 1449 | else { |
| 1450 | 1450 | $def = rtrim($def); |
@@ -1504,8 +1504,8 @@ discard block |
||
| 1504 | 1504 | * @return string |
| 1505 | 1505 | */ |
| 1506 | 1506 | protected function _doFencedCodeBlocks_callback($matches) { |
| 1507 | - $classname =& $matches[2]; |
|
| 1508 | - $attrs =& $matches[3]; |
|
| 1507 | + $classname = & $matches[2]; |
|
| 1508 | + $attrs = & $matches[3]; |
|
| 1509 | 1509 | $codeblock = $matches[4]; |
| 1510 | 1510 | |
| 1511 | 1511 | if ($this->code_block_content_func) { |
@@ -1527,9 +1527,9 @@ discard block |
||
| 1527 | 1527 | $attr_str = $this->doExtraAttributes($this->code_attr_on_pre ? "pre" : "code", $attrs, null, $classes); |
| 1528 | 1528 | $pre_attr_str = $this->code_attr_on_pre ? $attr_str : ''; |
| 1529 | 1529 | $code_attr_str = $this->code_attr_on_pre ? '' : $attr_str; |
| 1530 | - $codeblock = "<pre$pre_attr_str><code$code_attr_str>$codeblock</code></pre>"; |
|
| 1530 | + $codeblock = "<pre$pre_attr_str><code$code_attr_str>$codeblock</code></pre>"; |
|
| 1531 | 1531 | |
| 1532 | - return "\n\n".$this->hashBlock($codeblock)."\n\n"; |
|
| 1532 | + return "\n\n" . $this->hashBlock($codeblock) . "\n\n"; |
|
| 1533 | 1533 | } |
| 1534 | 1534 | |
| 1535 | 1535 | /** |
@@ -1662,9 +1662,9 @@ discard block |
||
| 1662 | 1662 | $text = preg_replace_callback('{F\x1Afn:(.*?)\x1A:}', |
| 1663 | 1663 | array($this, '_appendFootnotes_callback'), $text); |
| 1664 | 1664 | |
| 1665 | - if ( ! empty( $this->footnotes_ordered ) ) { |
|
| 1665 | + if (!empty($this->footnotes_ordered)) { |
|
| 1666 | 1666 | $this->_doFootnotes(); |
| 1667 | - if ( ! $this->omit_footnotes ) { |
|
| 1667 | + if (!$this->omit_footnotes) { |
|
| 1668 | 1668 | $text .= "\n\n"; |
| 1669 | 1669 | $text .= "<div class=\"footnotes\" role=\"doc-endnotes\">\n"; |
| 1670 | 1670 | $text .= "<hr" . $this->empty_element_suffix . "\n"; |
@@ -1764,7 +1764,7 @@ discard block |
||
| 1764 | 1764 | // Create footnote marker only if it has a corresponding footnote *and* |
| 1765 | 1765 | // the footnote hasn't been used by another marker. |
| 1766 | 1766 | if (isset($this->footnotes[$node_id])) { |
| 1767 | - $num =& $this->footnotes_numbers[$node_id]; |
|
| 1767 | + $num = & $this->footnotes_numbers[$node_id]; |
|
| 1768 | 1768 | if (!isset($num)) { |
| 1769 | 1769 | // Transfer footnote content to the ordered list and give it its |
| 1770 | 1770 | // number |
@@ -1793,8 +1793,8 @@ discard block |
||
| 1793 | 1793 | $node_id = $this->encodeAttribute($node_id); |
| 1794 | 1794 | |
| 1795 | 1795 | return |
| 1796 | - "<sup id=\"fnref$ref_count_mark:$node_id\">". |
|
| 1797 | - "<a href=\"#fn:$node_id\"$attr>$num</a>". |
|
| 1796 | + "<sup id=\"fnref$ref_count_mark:$node_id\">" . |
|
| 1797 | + "<a href=\"#fn:$node_id\"$attr>$num</a>" . |
|
| 1798 | 1798 | "</sup>"; |
| 1799 | 1799 | } |
| 1800 | 1800 | |