Lines Matching refs:HTML
3 # Markdown Extra - A text-to-HTML conversion tool for web writers
23 # Change to ">" for HTML output
170 'description' => 'A text-to-HTML conversion tool for web writers',
229 # Change to ">" for HTML output.
319 # Turn block-level HTML blocks into hash entries
389 # Hashify HTML blocks:
390 # We only want to do this for block-level HTML tags, such as headers,
494 | # Special case for standalone HTML comments:
576 # We need to escape raw HTML in Markdown source before doing anything
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
626 # Process character escapes, code spans, and inline HTML
942 # Form HTML ordered (numbered) and unordered (bulleted) lists.
1330 # $text - string to process with html <p> tags
1338 # Wrap <p> tags and unhashify HTML blocks
1399 # Encode text for a double-quoted HTML attribute. This function
1503 # Take the string $str and parse it into tokens, hashing embeded HTML,
1745 ### HTML Block Parser ###
1766 # Hashify HTML Blocks and "clean tags".
1768 # We only want to do this for block-level HTML tags, such as headers,
1781 # Call the HTML-in-Markdown hasher.
1847 <!-- .*? --> # HTML Comment
1963 # Need to parse tag and following text using the HTML parser.
1972 # HTML Comments, processing instructions.
1977 # Need to parse tag and following text using the HTML parser.
2017 # Parse HTML, calling _HashHTMLBlocks_InMarkdown for block tags.
2059 <!-- .*? --> # HTML Comment
2158 # Parse the content using the HTML-in-Markdown parser.
2262 # Form HTML tables.
2351 # and inline HTML tags, so that pipes inside those gets ignored.
2371 # and inline HTML tags, so that pipes inside those gets ignored.
2392 # Form HTML definition lists.
2587 # $text - string to process with html <p> tags
2595 # Wrap <p> tags and unhashify HTML blocks
2610 # Join grafs in one text, then unhash HTML tags.
2836 Markdown is a text-to-HTML filter; it translates an easy-to-read /
2837 easy-to-write structured text format into HTML. Markdown's text format
2842 specifically to serve as a front-end to (X)HTML. You can use span-level
2843 HTML tags anywhere in a Markdown document, and you can use block level
2844 HTML tags (like <div> and <table> as well).