rkorebrits / htmltoopenxml
Convert HTML to OpenOfficeXML
0.1.9
2018-09-19 12:15 UTC
Requires
- php: ^5.4 || ^7.0 || ^7.1 || ^7.2
This package is not auto-updated.
Last update: 2024-10-27 05:20:28 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 rkorebrits/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);