You are here

protected property Markdown::$em_relist in Express 8

* Define the emphasis operators with their regex matches *

Type: array

File

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

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

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