update changelog and doc
This commit is contained in:
parent
e29a3e7c10
commit
a0111be6ae
|
|
@ -17,6 +17,7 @@ v0.15.0 (?? ??? 2018)
|
||||||
- Add support for MACROBUTTON field @phryneas @troosan #1021
|
- Add support for MACROBUTTON field @phryneas @troosan #1021
|
||||||
- Add support for Hyphenation @Trainmaster #1282 (Document: `autoHyphenation`, `consecutiveHyphenLimit`, `hyphenationZone`, `doNotHyphenateCaps`, Paragraph: `suppressAutoHyphens`)
|
- Add support for Hyphenation @Trainmaster #1282 (Document: `autoHyphenation`, `consecutiveHyphenLimit`, `hyphenationZone`, `doNotHyphenateCaps`, Paragraph: `suppressAutoHyphens`)
|
||||||
- Added support for Floating Table Positioning (tblpPr) @anrikun #639
|
- Added support for Floating Table Positioning (tblpPr) @anrikun #639
|
||||||
|
- Added support for Image text wrapping distance @troosan #1310
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix reading of docx default style - @troosan #1238
|
- Fix reading of docx default style - @troosan #1238
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,10 @@ Available Image style options:
|
||||||
- ``marginTop``. Top margin in inches, can be negative.
|
- ``marginTop``. Top margin in inches, can be negative.
|
||||||
- ``width``. Width in pixels.
|
- ``width``. Width in pixels.
|
||||||
- ``wrappingStyle``. Wrapping style, *inline*, *square*, *tight*, *behind*, or *infront*.
|
- ``wrappingStyle``. Wrapping style, *inline*, *square*, *tight*, *behind*, or *infront*.
|
||||||
|
- ``wrapDistanceTop``. Top text wrapping in pixels.
|
||||||
|
- ``wrapDistanceBottom``. Bottom text wrapping in pixels.
|
||||||
|
- ``wrapDistanceLeft``. Left text wrapping in pixels.
|
||||||
|
- ``wrapDistanceRight``. Right text wrapping in pixels.
|
||||||
|
|
||||||
.. _numbering-level-style:
|
.. _numbering-level-style:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,9 +17,9 @@
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML;
|
namespace PhpOffice\PhpWord\Writer\HTML;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
|
||||||
use PhpOffice\PhpWord\Element\Text as TextElement;
|
use PhpOffice\PhpWord\Element\Text as TextElement;
|
||||||
use PhpOffice\PhpWord\Element\TrackChange;
|
use PhpOffice\PhpWord\Element\TrackChange;
|
||||||
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
use PhpOffice\PhpWord\Writer\HTML;
|
use PhpOffice\PhpWord\Writer\HTML;
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Element\Text;
|
use PhpOffice\PhpWord\Writer\HTML\Element\Text;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue