function MarkdownExtra_Parser::teardown in Markdown 5
Same name and namespace in other branches
- 6 markdown.php \MarkdownExtra_Parser::teardown()
Overrides Markdown_Parser::teardown
File
- ./
markdown.php, line 1717
Class
Code
function teardown() {
#
# Clearing Extra-specific variables.
#
$this->footnotes = array();
$this->footnotes_ordered = array();
$this->abbr_desciptions = array();
$this->abbr_word_re = '';
parent::teardown();
}