protected function Markdown::runSpanGamut in Express 8
* Run span gamut transformations *
Parameters
string $text: * @return string
14 calls to Markdown::runSpanGamut()
- Markdown::doItalicsAndBold in vendor/
michelf/ php-markdown/ Michelf/ Markdown.php - * Convert Markdown italics (emphasis) and bold (strong) to HTML *
- Markdown::formParagraphs in vendor/
michelf/ php-markdown/ Michelf/ Markdown.php - * Parse paragraphs * *
- 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::_doHeaders_callback_atx in vendor/
michelf/ php-markdown/ Michelf/ Markdown.php - * ATX header parsing callback *
File
- vendor/
michelf/ php-markdown/ Michelf/ Markdown.php, line 617
Class
- Markdown
- Markdown Parser Class
Namespace
MichelfCode
protected function runSpanGamut($text) {
foreach ($this->span_gamut as $method => $priority) {
$text = $this
->{$method}($text);
}
return $text;
}