You are here

protected function MarkdownExtra::teardown in Express 8

* Clearing Extra-specific variables.

Overrides Markdown::teardown

File

vendor/michelf/php-markdown/Michelf/MarkdownExtra.php, line 155

Class

MarkdownExtra
Markdown Extra Parser Class

Namespace

Michelf

Code

protected function teardown() {
  $this->footnotes = array();
  $this->footnotes_ordered = array();
  $this->footnotes_ref_count = array();
  $this->footnotes_numbers = array();
  $this->abbr_desciptions = array();
  $this->abbr_word_re = '';
  parent::teardown();
}