function MarkdownExtra_Parser::teardown in Markdown 6
Same name and namespace in other branches
- 5 markdown.php \MarkdownExtra_Parser::teardown()
Overrides Markdown_Parser::teardown
File
- ./
markdown.php, line 1787
Class
Code
function teardown() {
#
# Clearing Extra-specific variables.
#
$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();
}