├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── index.php ├── rtf.html ├── src ├── ControlSymbol.php ├── ControlWord.php ├── Document.php ├── Element.php ├── Group.php ├── Html │ ├── Font.php │ ├── HtmlFormatter.php │ ├── Image.php │ └── State.php └── Text.php └── tests ├── BulletsTest.php ├── EmptyStringTest.php ├── ExtraParagraphTest.php ├── FontFamilyTest.php ├── ParseSimpleTest.php └── rtf ├── bullets.rtf ├── extra-closing-paragraph.rtf ├── fonts.rtf └── hello-world.rtf /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .vscode -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/index.php -------------------------------------------------------------------------------- /rtf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/rtf.html -------------------------------------------------------------------------------- /src/ControlSymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/ControlSymbol.php -------------------------------------------------------------------------------- /src/ControlWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/ControlWord.php -------------------------------------------------------------------------------- /src/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Document.php -------------------------------------------------------------------------------- /src/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Element.php -------------------------------------------------------------------------------- /src/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Group.php -------------------------------------------------------------------------------- /src/Html/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Html/Font.php -------------------------------------------------------------------------------- /src/Html/HtmlFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Html/HtmlFormatter.php -------------------------------------------------------------------------------- /src/Html/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Html/Image.php -------------------------------------------------------------------------------- /src/Html/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Html/State.php -------------------------------------------------------------------------------- /src/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/src/Text.php -------------------------------------------------------------------------------- /tests/BulletsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/BulletsTest.php -------------------------------------------------------------------------------- /tests/EmptyStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/EmptyStringTest.php -------------------------------------------------------------------------------- /tests/ExtraParagraphTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/ExtraParagraphTest.php -------------------------------------------------------------------------------- /tests/FontFamilyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/FontFamilyTest.php -------------------------------------------------------------------------------- /tests/ParseSimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/ParseSimpleTest.php -------------------------------------------------------------------------------- /tests/rtf/bullets.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/rtf/bullets.rtf -------------------------------------------------------------------------------- /tests/rtf/extra-closing-paragraph.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/rtf/extra-closing-paragraph.rtf -------------------------------------------------------------------------------- /tests/rtf/fonts.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/rtf/fonts.rtf -------------------------------------------------------------------------------- /tests/rtf/hello-world.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henck/rtf-html-php/HEAD/tests/rtf/hello-world.rtf --------------------------------------------------------------------------------