asciidoctor-pdf 2.0.0.beta.2 → 2.0.0.rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +30 -0
- data/README.adoc +79 -1103
- data/docs/theming-guide.adoc +1 -1
- data/lib/asciidoctor/pdf/converter.rb +2062 -2064
- data/lib/asciidoctor/pdf/ext/asciidoctor/abstract_block.rb +31 -0
- data/lib/asciidoctor/pdf/ext/asciidoctor.rb +1 -0
- data/lib/asciidoctor/pdf/ext/prawn/document/column_box.rb +9 -5
- data/lib/asciidoctor/pdf/ext/prawn/extensions.rb +22 -20
- data/lib/asciidoctor/pdf/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09fac4d8ebb3877676d74d2fa320ae0a1f06cf2920d5560e98fde953de11cc08'
|
4
|
+
data.tar.gz: e91be3fb2d14f512d058d8d01a15cbd2ec9ad58eace2fce55712e17b53e105e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9407d5a3cf6e615f0c5a8a8d178c9257b111c385d91a699c55a4dd52b3fbe7c93da964eb13621740274f5b345fc08d035c7b01a7b998bcb2345081478a0cdf0f
|
7
|
+
data.tar.gz: 51ccb076ce61906d75910950a41f95c37d11575506315c9324e9016a833d85ce2fb6d867ad051f3934ec4e475f79354cf602f25261bf440b307061c9e7aada92
|
data/CHANGELOG.adoc
CHANGED
@@ -5,6 +5,36 @@
|
|
5
5
|
This document provides a high-level view of the changes to the {project-name} by release.
|
6
6
|
For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.
|
7
7
|
|
8
|
+
== 2.0.0.rc.1 (2022-05-17) - @mojavelinux
|
9
|
+
|
10
|
+
Enhancements::
|
11
|
+
|
12
|
+
* allow theme to position caption for code and example blocks below block using `caption-end` key (#1730)
|
13
|
+
* allow hyphenation to be turned on and configured using the `base-hyphens` key in the theme (#2161)
|
14
|
+
* replace `docdir` attribute reference in value of `pdf-themesdir` and `pdf-fontsdir` attributes (if not already replaced) (#412)
|
15
|
+
* split out `start_title_page` method from `ink_title_page` to make customization of the title page simpler using an extended converter
|
16
|
+
* introduce `start_toc_page` method to handle positioning cursor at first page of TOC
|
17
|
+
|
18
|
+
Improvements::
|
19
|
+
|
20
|
+
* reclassify and mark which methods in the converter are private
|
21
|
+
* organize methods in converter
|
22
|
+
* add DOM traversal methods to simplify the logic in the converter
|
23
|
+
* remove requirement to add dummy text to title page to preserve it
|
24
|
+
|
25
|
+
Bug Fixes::
|
26
|
+
|
27
|
+
* apply top line height padding to first line of text when text runs to top of next page (#2173)
|
28
|
+
* don't add entry to outline for notitle section if no content follows it
|
29
|
+
* don't add entry to TOC for notitle section if no content follows it
|
30
|
+
* look for block align roles on image instead of text align roles (#2176)
|
31
|
+
* use correct left value when creating bounding box
|
32
|
+
* don't apply border on block images to logo image on title page
|
33
|
+
|
34
|
+
=== Details
|
35
|
+
|
36
|
+
{url-repo}/releases/tag/v2.0.0.rc.1[git tag] | {url-repo}/compare/v2.0.0.beta.2\...v2.0.0.rc.1[full diff]
|
37
|
+
|
8
38
|
== 2.0.0.beta.2 (2022-05-14) - @mojavelinux
|
9
39
|
|
10
40
|
Enhancements::
|