public function __construct()
 {
     $this->span_gamut += array('doAutoSteamLinks' => 5);
     parent::__construct();
     $this->empty_element_suffix = '>';
     $this->no_markup = true;
     $this->no_entities = true;
 }
Esempio n. 2
0
 /**
  * Constructor function. Initialize the parser object.
  * @return void
  */
 public function __construct()
 {
     // Add extra escapable characters before parent constructor
     // initialize the table.
     $this->escape_chars .= ':|';
     // Insert extra document, block, and span transformations.
     // Parent constructor will do the sorting.
     $this->document_gamut += array("doFencedCodeBlocks" => 5, "stripFootnotes" => 15, "stripAbbreviations" => 25, "appendFootnotes" => 50);
     $this->block_gamut += array("doFencedCodeBlocks" => 5, "doTables" => 15, "doDefLists" => 45);
     $this->span_gamut += array("doFootnotes" => 5, "doAbbreviations" => 70);
     $this->enhanced_ordered_list = true;
     parent::__construct();
 }
Esempio n. 3
0
 public function __construct()
 {
     #
     # Constructor function. Initialize the parser object.
     #
     # Add extra escapable characters before parent constructor
     # initialize the table.
     $this->escape_chars .= ':|';
     # Insert extra document, block, and span transformations.
     # Parent constructor will do the sorting.
     $this->document_gamut += array("doFencedCodeBlocks" => 5, "stripFootnotes" => 15, "stripAbbreviations" => 25, "appendFootnotes" => 50);
     $this->block_gamut += array("doFencedCodeBlocks" => 5, "doTables" => 15, "doDefLists" => 45);
     $this->span_gamut += array("doFootnotes" => 5, "doAbbreviations" => 70);
     parent::__construct();
 }
Esempio n. 4
0
 public function __construct()
 {
     parent::__construct();
     // configure markdown plugin here, see https://michelf.ca/projects/php-markdown/configuration/
 }