/**
     * Constructor
     */
    public function __construct(ExportData $data, $filename = '')
    {
        parent::__construct($data, $filename);
        $this->format->bol = "<tr>";
        $this->format->eol = "</tr>" . $this->format->cr;
        $this->format->html = '<!DOCTYPE html>

  <html>
  <head>
      <title></title>
      <style type="text/css"></style>
  </head>

  <body></body>
  </html>';
        $this->format->css = NULL;
    }