diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6c5eb19..437fc68 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/README.rst b/README.rst index bb95eca..615c592 100644 --- a/README.rst +++ b/README.rst @@ -87,3 +87,16 @@ Configuration options can be specified with Meta data at the top of the file. | | `docs `_ | | | 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 | ++---------------------+---------------------------------------------+