You are here

protected property Markdown::$strong_relist in Express 8

* Define the strong operators with their regex matches *

Type: array

File

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

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

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