Home | History | Annotate | Download | only in PHP-Markdown-Extra-1.2.3

Lines Matching full:marker

306         # Remove UTF-8 BOM and marker character in input, if present.
608 ([-*_]) # $1: First marker
609 (?> # Repeated marker group
611 \1 # Marker character
959 ('.$marker_re.') # $3 = first list item marker
968 (?! # Negative lookahead for another list item marker
1051 ('.$marker_any_re.' # list marker and space = $3
1073 # Replace marker with the appropriate whitespace indentation
1203 # Reached closing marker while inside a three-char emphasis.
1205 # Three-char closing marker, close em and strong.
1214 # Other closing marker: close one em or strong and
1227 # Reached closing marker for both em and strong.
1228 # Closing strong marker:
1239 # Reached opening three-char emphasis marker. Push on token
1249 # Unwind any dangling emphasis marker:
1254 # Closing strong marker:
1270 # Closing emphasis marker:
1513 `+ # code span marker
1533 # openning code span marker, or the next escaped character.
1566 # Search for end marker in remaining text.
1574 return $token; // return as text since no ending marker found.
1853 # Code span marker
1864 # Fenced code block marker
1910 # Check for: Code span marker
1913 # Find corresponding end marker.
1918 # End marker found: pass text unchanged until marker.
1923 # Unmatched marker: just skip it.
1928 # Check for: Indented code block or fenced code block marker.
1937 # Fenced code block marker: find matching end marker.
1942 # End marker found: pass text unchanged until marker.
1947 # No end marker: just skip it.
2471 ( # marker space = $2
2502 # Replace marker with the appropriate whitespace indentation
2528 # 1: Opening marker
2530 ~{3,} # Marker: three tilde or more.
2532 [ ]* \n # Whitespace and newline following marker.
2537 (?!\1 [ ]* \n) # Not a closing marker.
2542 # Closing marker.
2639 (?!\[\^.+?\]:\s)# negative lookahead for footnote marker.
2659 # which will be replaced by the actual footnote marker in appendFootnotes.
2728 # Create footnote marker only if it has a corresponding footnote *and*
2729 # the footnote hasn't been used by another marker.