'.DOKU_LF;
$this->slideopen = true;
}
$this->doc .= '
'.DOKU_LF;
}
/**
* Top-Level Sections are slides
*/
function section_open($level) {
if($level < 3){
$this->doc .= '
'.DOKU_LF;
}else{
$this->doc .= '
'.DOKU_LF;
}
// we don't use it
}
/**
* Throw away footnote
*/
function footnote_close() {
// recover footnote into the stack and restore old content
$footnote = $this->doc;
$this->doc = $this->store;
$this->store = '';
}
/**
* No acronyms in a presentation
*/
function acronym($acronym){
$this->doc .= $this->_xmlEntities($acronym);
}
/**
* A line stops the slide and start the handout section
*/
function hr() {
$this->doc .= '
'.DOKU_LF;
$this->doc .= '
'.DOKU_LF;
}
}
//Setup VIM: ex: et ts=4 enc=utf-8 :