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