You are here

protected property Markdown::$em_strong_relist in Markdown 7

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

Type: array

File

includes/Markdown.php, line 1265

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

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