protected property Markdown::$span_gamut in Markdown 7
* These are all the transformations that occur *within* block-level * tags like paragraphs, headers, and list items. *
Type: array
File
- includes/
Markdown.php, line 595
Class
- Markdown
- Markdown Parser Class
Namespace
MichelfCode
protected $span_gamut = array(
// Process character escapes, code spans, and inline HTML
// in one shot.
"parseSpan" => -30,
// Process anchor and image tags. Images must come first,
// because ![foo][f] looks like an anchor.
"doImages" => 10,
"doAnchors" => 20,
// Make links out of things like `<https://example.com/>`
// Must come after doAnchors, because you can use < and >
// delimiters in inline links like [this](<url>).
"doAutoLinks" => 30,
"encodeAmpsAndAngles" => 40,
"doItalicsAndBold" => 50,
"doHardBreaks" => 60,
);