You are here

property Markdown_Parser::$strong_relist in Markdown 5

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

File

./markdown.php, line 1119

Class

Markdown_Parser

Code

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