Example #1
0
 protected function renderHeadline($block)
 {
     if ($this->_chapter === 0) {
         $this->title = $block['content'];
         $this->introduction = '';
         $this->_chapter++;
     } else {
         $this->_chapter++;
         $this->_chapters[$this->_chapter] = ['headline' => $block['content'], 'content' => []];
     }
     return parent::renderHeadline($block);
 }