protected property Markdown::$em_relist in Markdown 7
* Define the emphasis operators with their regex matches *
Type: array
File
- includes/
Markdown.php, line 1245
Class
- Markdown
- Markdown Parser Class
Namespace
MichelfCode
protected $em_relist = array(
'' => '(?:(?<!\\*)\\*(?!\\*)|(?<!_)_(?!_))(?![\\.,:;]?\\s)',
'*' => '(?<![\\s*])\\*(?!\\*)',
'_' => '(?<![\\s_])_(?!_)',
);