Release: v1.0.2

This commit is contained in:
Nemo 2021-06-26 17:57:51 +05:30
parent 1b8185cfd0
commit ab4d938909
2 changed files with 17 additions and 0 deletions

View File

@ -2,6 +2,10 @@
Changelog
=========
Version 1.0.2
=============
- Adds support for rotating PDFs
Version 1.0.1
=============
- Fixes a bug where markdown files without any headings would not render.

View File

@ -87,3 +87,16 @@ Configuration options can be specified with Meta data at the top of the file.
| | `docs <https://github.com/captn3m0/pystitcher/wiki/Existing-Bookmarks>`_ |
| | for more details. |
+---------------------+--------------------------------------------------------------------------+
Additionally, PDF links specified in markdown can have attributes to alter the PDFs before merging::
[Part 1](1.pdf)
[Part 2](2.pdf){: rotate="90"}
The above will rotate the second PDF file by 90 degrees clockwise before merging. List of attributes:
+---------------------+---------------------------------------------+
| Attribute | Notes |
+=====================+=============================================+
| rotate | Rotate the PDF. Valid values are 90,180,270 |
+---------------------+---------------------------------------------+