You are here

protected property MarkdownExtra::$em_strong_relist in Express 8

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

Type: array

Overrides Markdown::$em_strong_relist

File

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

Class

MarkdownExtra
Markdown Extra Parser Class

Namespace

Michelf

Code

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