Hello,
We currently have a service that will create docx files from HTML files.
We now do it by using
$docx->embedHTML($html, array('isFile' => false, 'downloadImages' => true));
Is it possible to have a certain tag in the HTML to have header and footer in there? Or do we need to have a seperate piece in PHP to add header and footer (and leave the regular document in the embedHTML)?
An alternative I was thinking about was to create for the header and footer a WordFragment, and embed HTML in each (since the whole source is coming from HTML, but we could split the HTML files into header, content, footer).
Any suggestions? (We have the Premium license)
Friendly regards,
Novak