Skip to content

Commit ef94eba

Browse files
committed
Removing unused variable $marker_any_re in doLists.
Fixes michelf#121.
1 parent 92c726a commit ef94eba

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Michelf/Markdown.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,6 @@ protected function doLists($text) {
789789
# Re-usable patterns to match list item bullets and number markers:
790790
$marker_ul_re = '[*+-]';
791791
$marker_ol_re = '\d+[\.]';
792-
$marker_any_re = "(?:$marker_ul_re|$marker_ol_re)";
793792

794793
$markers_relist = array(
795794
$marker_ul_re => $marker_ol_re,

0 commit comments

Comments
 (0)