diff --git a/libreto/libreto.php b/libreto/libreto.php index 8a3decf..40f4470 100644 --- a/libreto/libreto.php +++ b/libreto/libreto.php @@ -172,7 +172,6 @@ class Libreto public function export(){ $title = $this->name(); - //$introduction = $this->pads()->find('about') ? $this->pads()->find('about')->html() : false; $pads = $this->pads()->children(); $chapters = array(); @@ -186,7 +185,6 @@ class Libreto $odt = new \CatoTH\HTML2OpenDocument\Text(); $odt->addHtmlTextBlock('

' . $title . '

'); - //$odt->addHtmlTextBlock($introduction); foreach ($chapters as $chapter) { $odt->addHtmlTextBlock('

' . $chapter['title'] . '

'); $odt->addHtmlTextBlock($chapter['html']);