Skip to content

Commit

Permalink
Remove extra lines
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Caruso <carusogabriel34@gmail.com>
  • Loading branch information
carusogabriel committed Dec 31, 2017
1 parent 3d8b447 commit 4ef5ce7
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 15 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@
- PowerPoint2007 Writer: Scatter chart with numerical X values not working well - @Progi1984 GH-3
- Shape RichText: Support of Vertical Alignment in PowerPoint2007 - @Progi1984 GH-35


### Miscellaneous

- Rename PHPPowerpoint.php to PHPPowerPoint.php - @maartenba CP-1165
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ $oWriterODP->save(__DIR__ . "/sample.odp");

More examples are provided in the [samples folder](samples/). You can also read the [Developers' Documentation](http://phppresentation.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPPresentation/docs/master/) for more detail.


## Contributing

We welcome everyone to contribute to PHPPresentation. Below are some of the things that you can do to contribute:
Expand Down
1 change: 0 additions & 1 deletion docs/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ name. Use the following functions :
$properties->setSubject('My subject');
$properties->setKeywords('my, key, word');
Presentation Properties
-----------------------

Expand Down
1 change: 0 additions & 1 deletion docs/references.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ OpenDocument
- `Oasis OpenDocument Standard Version
1.2 <http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os.html>`__


PowerPoint 97
---------------

Expand Down
1 change: 0 additions & 1 deletion docs/shapes_chart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ You can stack multiples series in a same chart. After adding multiples series, y
:width: 120px
:alt: Bar::GROUPING_PERCENTSTACKED


Line
^^^^

Expand Down
1 change: 0 additions & 1 deletion docs/shapes_comment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Example:
$oComment->setDate(time());
$oSlide->addShape($oComment);
Author
------

Expand Down
1 change: 0 additions & 1 deletion docs/shapes_drawing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ GD
->setMimeType(Drawing\Gd::MIMETYPE_DEFAULT);
$oSlide->addShape($oShape);
Base64
------

Expand Down
1 change: 0 additions & 1 deletion docs/shapes_media.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ Example:
$oMedia->setName('Name of the Media');
$oSlide->addShape($oMedia);
Quirks
------

Expand Down
3 changes: 0 additions & 3 deletions docs/shapes_richtext.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ Properties that can be set for each paragraphs are as follow.
- ``lineSpacing`` see *[LineSpacing](#linespacing)*
- ``font`` see *[Font](#font)*


Bullet
------

Expand Down Expand Up @@ -59,7 +58,6 @@ With the bullet style, you can define the char, the font, the color and the type
$oParagraph->getBulletStyle()->setBulletType(Bullet::TYPE_BULLET);
$oParagraph->getBulletStyle()->setBulletColor(new Color(Color::COLOR_RED));
LineSpacing
-----------

Expand All @@ -75,7 +73,6 @@ Example:
$oParagraph->setLineSpacing(200);
$iLineSpacing = $oParagraph->getLineSpacing();
Run
---

Expand Down
3 changes: 0 additions & 3 deletions docs/shapes_table.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ You can access cell object directly.
// Get the second cell
$cellA2 = $row->getCell(1);
Define margins of a cell
~~~~~~~~~~~~~~~~~~~~~~~~
Margins of cells are defined by margins of the first paragraph of cell.
Expand All @@ -66,7 +65,6 @@ For defining margins of cell, you can use the `setMargin*` method of a Alignment
->setMarginRight(60)
->setMarginTop(80);
Define the text direction of a cell
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For defining the text direction of cell, you can use the `setTextDirection` method of the `getAlignment` method of a Cell object.
Expand All @@ -79,7 +77,6 @@ The width is in pixels.
$cellA1 = $row->nextCell();
$cellA1->getAlignment()->setTextDirection(\PhpOffice\PhpPresentation\Style\Alignment::TEXT_DIRECTION_VERTICAL_270);
Define the width of a cell
~~~~~~~~~~~~~~~~~~~~~~~~~~
The width of cells are defined by the width of cell of the first row.
Expand Down
1 change: 0 additions & 1 deletion docs/writers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Writers
=======


ODPresentation
--------------

Expand Down

0 comments on commit 4ef5ce7

Please sign in to comment.