You are here

protected property MarkdownExtra::$strong_relist in Express 8

* Define the strong operators with their regex matches *

Type: array

Overrides Markdown::$strong_relist

File

vendor/michelf/php-markdown/Michelf/MarkdownExtra.php, line 1495

Class

MarkdownExtra
Markdown Extra Parser Class

Namespace

Michelf

Code

protected $strong_relist = array(
  '' => '(?:(?<!\\*)\\*\\*(?!\\*)|(?<![a-zA-Z0-9_])__(?!_))(?![\\.,:;]?\\s)',
  '**' => '(?<![\\s*])\\*\\*(?!\\*)',
  '__' => '(?<![\\s_])__(?![a-zA-Z0-9_])',
);