You are here

protected property Markdown::$em_strong_relist in Express 8

* Define the emphasis + strong operators with their regex matches *

Type: array

File

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

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

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