protected property MarkdownExtra::$strong_relist in Markdown 7
* Define the strong operators with their regex matches *
Type: array
Overrides Markdown::$strong_relist
File
- includes/
MarkdownExtra.php, line 1495
Class
- MarkdownExtra
- Markdown Extra Parser Class
Namespace
MichelfCode
protected $strong_relist = array(
'' => '(?:(?<!\\*)\\*\\*(?!\\*)|(?<![a-zA-Z0-9_])__(?!_))(?![\\.,:;]?\\s)',
'**' => '(?<![\\s*])\\*\\*(?!\\*)',
'__' => '(?<![\\s_])__(?![a-zA-Z0-9_])',
);