You are here

protected property Markdown::$strong_relist in Markdown 7

* Define the strong operators with their regex matches *

Type: array

File

includes/Markdown.php, line 1255

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

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