charl4e / htmltoopenxml
Convert HTML to OpenOfficeXML
0.1.11
2019-04-16 10:37 UTC
Requires
- php: ^5.4 || ^7.0 || ^7.1 || ^7.2
This package is auto-updated.
Last update: 2025-03-17 00:04:49 UTC
README
Forked from https://github.com/ffmad/HTMLtoOpenXML
Simple PHP script which take HTML code and transform it into OpenXML Code. (for Docx)
This is the very first version. I coded this because i wanted to put text from a WYSIWYG editor into a .docx document.
INSTALLATION
composer require charl4e/htmltoopenxml
WHAT H2OXML CAN DO
For now it can deal with :
- Paragraphs
- Bold, italic and underlined text (<strong|b|em|i|u>)
- Bullet lists
Many more can be done (the wysiwyg editor had only simple functions)
HOW TO USE IT
$parser = new HTMLtoOpenXML\Parser();
$ooXml = $parser->fromHTML($html);