You are here

protected property Markdown::$block_gamut in Express 8

* Define the block gamut - these are all the transformations that form * block-level tags like paragraphs, headers, and list items. *

Type: array

File

vendor/michelf/php-markdown/Michelf/Markdown.php, line 523

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

protected $block_gamut = array(
  "doHeaders" => 10,
  "doHorizontalRules" => 20,
  "doLists" => 40,
  "doCodeBlocks" => 50,
  "doBlockQuotes" => 60,
);