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

Lines Matching refs:blocks

26 # Define the width of a tab for code blocks.
319 # Turn block-level HTML blocks into hash entries
389 # Hashify HTML blocks:
444 # First, look for nested blocks, e.g.:
578 # begining in the Markdown function since hashed blocks can be part of
579 # list items and could have been indented. Indented blocks would have
588 # Run block gamut tranformations, without hashing HTML blocks. This is
589 # useful when HTML blocks are known to be already hashed, like in the first
596 # Finally form paragraph and restore hashed blocks.
1090 # Process Markdown `<pre><code>` blocks.
1338 # Wrap <p> tags and unhashify HTML blocks
1597 # For each line we separate the line in blocks delemited by
1599 # appropriate number of space between each blocks.
1610 # Split in blocks.
1611 $blocks = explode("\t", $line);
1612 # Add each blocks to the line.
1613 $line = $blocks[0];
1614 unset($blocks[0]); # Do not add first block twice.
1615 foreach ($blocks as $block) {
1766 # Hashify HTML Blocks and "clean tags".
1794 # blocks. This is important because if we don't take the indent into
2019 # * Calls $hash_method to convert any blocks.
2595 # Wrap <p> tags and unhashify HTML blocks
2839 as headers, *emphasis*, code blocks, blockquotes, and links.