You are here

18 calls to Markdown::hashPart() in Express 8

Markdown::doItalicsAndBold in vendor/michelf/php-markdown/Michelf/Markdown.php
* Convert Markdown italics (emphasis) and bold (strong) to HTML *
Markdown::handleSpanToken in vendor/michelf/php-markdown/Michelf/Markdown.php
* Handle $token provided by parseSpan by determining its nature and * returning the corresponding value that should replace it. *
Markdown::hashBlock in vendor/michelf/php-markdown/Michelf/Markdown.php
* Shortcut function for hashPart with block-level boundaries. *
Markdown::makeCodeSpan in vendor/michelf/php-markdown/Michelf/Markdown.php
* Create a code span markup for $code. Called from handleSpanToken. *
Markdown::_doAnchors_inline_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Callback method to parse inline anchors *
Markdown::_doAnchors_reference_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Callback method to parse referenced anchors *
Markdown::_doAutoLinks_email_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Parse email address callback *
Markdown::_doAutoLinks_url_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Parse URL callback *
Markdown::_doHardBreaks_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Trigger part hashing for the hard break (callback method) *
Markdown::_doImages_inline_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Callback to parse inline image tags *
Markdown::_doImages_reference_callback in vendor/michelf/php-markdown/Michelf/Markdown.php
* Callback to parse references image tags *
MarkdownExtra::hashClean in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Called whenever a tag must be hashed when a function inserts a "clean" tag * in $text, it passes through this function and is automaticaly escaped, * blocking invalid nested overlap. *
MarkdownExtra::_doAbbreviations_callback in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Callback for processing abbreviations *
MarkdownExtra::_doAnchors_inline_callback in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Callback for inline anchors *
MarkdownExtra::_doAnchors_reference_callback in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Callback for reference anchors *
MarkdownExtra::_doImages_inline_callback in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Callback for inline images *
MarkdownExtra::_doImages_reference_callback in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Callback for referenced images *
MarkdownExtra::_hashHTMLBlocks_inMarkdown in vendor/michelf/php-markdown/Michelf/MarkdownExtra.php
* Parse markdown text, calling _HashHTMLBlocks_InHTML for block tags. * * * $indent is the number of space to be ignored when checking for code * blocks. This is important because if we don't take the indent into * account,…