You are here

property Markdown_Parser::$strong_relist in Markdown 6

Same name and namespace in other branches
  1. 5 markdown.php \Markdown_Parser::strong_relist

File

./markdown.php, line 1163

Class

Markdown_Parser

Code

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