You are here

function MarkdownExtra_Parser::teardown in Markdown 5

Same name and namespace in other branches
  1. 6 markdown.php \MarkdownExtra_Parser::teardown()

Overrides Markdown_Parser::teardown

File

./markdown.php, line 1717

Class

MarkdownExtra_Parser

Code

function teardown() {

  #

  # Clearing Extra-specific variables.

  #
  $this->footnotes = array();
  $this->footnotes_ordered = array();
  $this->abbr_desciptions = array();
  $this->abbr_word_re = '';
  parent::teardown();
}