asciidoctor-pdf 2.0.0.beta.1 → 2.0.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +128 -82
- data/README.adoc +6 -119
- data/data/themes/base-theme.yml +1 -1
- data/data/themes/default-for-print-theme.yml +4 -4
- data/data/themes/default-for-print-with-fallback-font-theme.yml +2 -3
- data/data/themes/default-for-print-with-font-fallbacks-theme.yml +3 -0
- data/data/themes/{sans-with-fallback-font-theme.yml → default-sans-theme.yml} +1 -1
- data/data/themes/default-sans-with-font-fallbacks-theme.yml +3 -0
- data/data/themes/default-theme.yml +3 -2
- data/data/themes/default-with-fallback-font-theme.yml +2 -9
- data/data/themes/default-with-font-fallbacks-theme.yml +9 -0
- data/docs/theming-guide.adoc +5 -6051
- data/lib/asciidoctor/pdf/converter.rb +237 -92
- data/lib/asciidoctor/pdf/ext/prawn/document/column_box.rb +16 -0
- data/lib/asciidoctor/pdf/ext/prawn/extensions.rb +50 -23
- data/lib/asciidoctor/pdf/ext/prawn/formatted_text/box.rb +14 -0
- data/lib/asciidoctor/pdf/ext/prawn/formatted_text/indented_paragraph_wrap.rb +39 -0
- data/lib/asciidoctor/pdf/ext/prawn-table/cell/asciidoc.rb +2 -9
- data/lib/asciidoctor/pdf/ext/prawn.rb +2 -0
- data/lib/asciidoctor/pdf/formatted_text/source_wrap.rb +7 -2
- data/lib/asciidoctor/pdf/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b935ce3aea7b70edb830a1f0c5bda65946906f5237c62e092520a3278601d382
|
4
|
+
data.tar.gz: fc94d51df27157920ce16afb6550a05c045ffa3b0dd5f5db033c90bd17c84304
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a51edc93917183ef48c430a33df763404706a6dc72a4fc248b03760a8f3c7c21d53b2aa3a289f01acd2e765c34ad9a1d5b0022590a51a6d4d3acbe406d779155
|
7
|
+
data.tar.gz: ab163214c8bf89866dd2eaed94e6c99662431268757b5e1e7023545bd3fb58484008f633d49974b32cc4b1e13455cb54ef77dc7e3e385d5feac36bdf67d8897e
|
data/CHANGELOG.adoc
CHANGED
@@ -1,9 +1,55 @@
|
|
1
1
|
= {project-name} Changelog
|
2
2
|
:project-name: Asciidoctor PDF
|
3
|
-
:
|
3
|
+
:url-repo: https://github.com/asciidoctor/asciidoctor-pdf
|
4
4
|
|
5
5
|
This document provides a high-level view of the changes to the {project-name} by release.
|
6
|
-
For a detailed view of what has changed, refer to the {
|
6
|
+
For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.
|
7
|
+
|
8
|
+
== 2.0.0.beta.2 (2022-05-14) - @mojavelinux
|
9
|
+
|
10
|
+
Enhancements::
|
11
|
+
|
12
|
+
* add support for float attribute on image; wrap ensuing paragraphs around image with `float` attribute (#353)
|
13
|
+
* add `supports_float_wrapping?` method for extended converter to override to enlist other blocks in float wrapping; add example to docs (#353)
|
14
|
+
* add `image-float-gap` key to theme to control space around image float (#353)
|
15
|
+
* add support for `text-transform` property on first line of abstract in theme (#2141)
|
16
|
+
* rename `resolve_alignment_from_role` to `resolve_text_align_from_role` to reflect proper terminology and purpose; alias old method name
|
17
|
+
* add support for orphan avoidance to discrete headings to match behavior of section titles (using call to `arrange_heading`) (#2151)
|
18
|
+
* rename `arrange_section` to `arrange_heading` to reflect proper terminology and purpose
|
19
|
+
* add `index-column-gap` key to theme to control size of gap between columns
|
20
|
+
* coerce `image-caption-max-width` to `fit-content` if `float` attribute is set on block image (#2150)
|
21
|
+
* add support for text box with fixed height via `:height` option to `typeset_text` helper
|
22
|
+
* configure `typeset_text` and `ink_prose` to return remaining fragments when `:height` option is specified
|
23
|
+
* add support for `:indent_paragraphs` option to formatted text box (#353)
|
24
|
+
* if `float` attribute is set on block image, set max width on caption to `fit-content` if max width not already set to a `fit-content` value
|
25
|
+
* add built-in default-sans theme
|
26
|
+
|
27
|
+
Improvements::
|
28
|
+
|
29
|
+
* rename theme suffix with-fallback-font to with-font-fallbacks
|
30
|
+
* rename sans-with-fallback-font theme to default-sans-with-font-fallbacks
|
31
|
+
* configure spacing around thematic break using `thematic-break-padding` key instead of margin top and bottom (#2164)
|
32
|
+
* rename `convert_listing_or_literal` to `convert_code` and alias old name
|
33
|
+
* reify convert handler for STEM blocks (`convert_stem`)
|
34
|
+
* reify convert handler for pass blocks (`convert_pass`) and remove block decoration
|
35
|
+
|
36
|
+
Bug Fixes::
|
37
|
+
|
38
|
+
* honor `caption-align` when element align is not `left` and `caption-max-width` is % of element width (e.g., `fit-content(50%)`) (#2156)
|
39
|
+
* do not orphan sidebar title (#2158)
|
40
|
+
* allow theme to set font style of first line of abstract to `normal_italic` (#2138)
|
41
|
+
* add support for `:color` option to `Prawn::Text::Formatted::Box` directly and remove workarounds
|
42
|
+
* preserve columns on subsequent pages in the index section (#2149)
|
43
|
+
* fix return value of `cursor` method inside block for column box in index section
|
44
|
+
* correctly detect preceding code block when determining whether to collapse top margin of colist
|
45
|
+
* apply bottom margin to thematic break that falls at top of page (#2164)
|
46
|
+
* allow extended converter to override `convert_code` method to handle `convert_listing` and `convert_literal` calls
|
47
|
+
* restore margin below pass block
|
48
|
+
* remove use of deprecated theme keys in default-for-print theme
|
49
|
+
|
50
|
+
=== Details
|
51
|
+
|
52
|
+
{url-repo}/releases/tag/v2.0.0.beta.2[git tag] | {url-repo}/compare/v2.0.0.beta.1\...v2.0.0.beta.2[full diff]
|
7
53
|
|
8
54
|
== 2.0.0.beta.1 (2022-05-04) - @mojavelinux
|
9
55
|
|
@@ -14,7 +60,7 @@ Enhancements::
|
|
14
60
|
* allow extended converter to insert or filter toc entries by overriding `get_entries_for_toc` method (#2097)
|
15
61
|
* add `asciidoctor/pdf/nopngmagick` script to unregister Gmagick handler for PNG images only (#1687)
|
16
62
|
* allow theme to configure which end the caption is placed for a block image (#2115)
|
17
|
-
* add `Page#imported` method to mark page as imported (which suppresses running
|
63
|
+
* add `Page#imported` method to mark page as imported (which suppresses running content)
|
18
64
|
* add support for `smallcaps` text transform by replacing lowercase letters with small capital variants (#1192)
|
19
65
|
* use `base-border-color` as default border color; control appearance of border using `border-width` value alone (#2134)
|
20
66
|
* remove border colors in base theme so all border colors can be controlled using `base-border-color` when extending theme
|
@@ -52,7 +98,7 @@ Bug Fixes::
|
|
52
98
|
* allow `ink_toc` method in extended converter to insert page above TOC page
|
53
99
|
* remap `layout_` methods contributed to converter by prepended module
|
54
100
|
* neutralize padding hacks in themes designed before the converter had smart margins
|
55
|
-
* allow smallest ends or sides border width on block to be less than 1
|
101
|
+
* allow the smallest ends or sides border width on block to be less than 1
|
56
102
|
* cap border corners on block when width is defined using array (uniform or otherwise) (#2103)
|
57
103
|
* fix crash in certain circumstances when theme does not define value for `base-border-width` key
|
58
104
|
* use sensible fallbacks for table border and grid color and width (retains backwards compatibility)
|
@@ -76,7 +122,7 @@ Enhancements::
|
|
76
122
|
* allow the title of any section to be hidden using the `notitle` option
|
77
123
|
* allow imported PDF page to be referenced in TOC by enclosing in parent section with `notitle` option (#1213)
|
78
124
|
* allow entry for preface to be added to TOC without adding title to body using the `notitle` option on the preface section (#1786)
|
79
|
-
* automatically promote the `notitle` option from the first block in the
|
125
|
+
* automatically promote the `notitle` option from the first block in the preamble to preface section; restore lead role on opening paragraph (#1786)
|
80
126
|
|
81
127
|
Improvements::
|
82
128
|
|
@@ -103,13 +149,13 @@ Bug Fixes::
|
|
103
149
|
Enhancements::
|
104
150
|
|
105
151
|
* make delimited blocks breakable by default; require the `unbreakable` option on the block to retain the previous "`keep together`" behavior (#2004, #578, #509, #240)
|
106
|
-
* add support for the
|
107
|
-
* add support for the
|
152
|
+
* add support for the `unbreakable` option on a table to prevent it from being split across pages (#2022, #871, #819, #331)
|
153
|
+
* add support for the `breakable` option on a table (special case) to keep the caption and ID with the start of the table (#2022, #993)
|
108
154
|
* implement smart bottom margins on blocks to prevent extra space below blocks, particularly nested blocks (#1515, #1513, #1845)
|
109
155
|
* drop support for `top-margin` key on block and prose categories in theme; space between delimited blocks and lists now controlled using bottom margins only (#1515)
|
110
156
|
* allow location of anchor for block to be positioned relative to content using `block-anchor-top` key in theme (#2013)
|
111
|
-
* allow page numbering and running content to start after first page of a document without a title page by assigning an integer to the respective `
|
112
|
-
* allow page numbering and running content to start after toc (wherever it's placed) by assigning the keyword `after-toc` to the respective `
|
157
|
+
* allow page numbering and running content to start after first page of a document without a title page by assigning an integer to the respective `start-at` theme key (#1644)
|
158
|
+
* allow page numbering and running content to start after toc (wherever it's placed) by assigning the keyword `after-toc` to the respective `start-at` theme key (#1763)
|
113
159
|
* allow theme to configure page numbering to start at cover (#1727)
|
114
160
|
* allow the front and back cover images to be defined in the theme (#1584)
|
115
161
|
* allow the front and back cover images to be specified as a data URI (#1584)
|
@@ -146,7 +192,7 @@ Enhancements::
|
|
146
192
|
* normalize space characters in authors content and drop lines with unresolved attribute references (#1642)
|
147
193
|
* skip image block with missing image if computed alt text resolves to empty string (#1645)
|
148
194
|
* custom theme does not inherit from base theme by default; must be specified explicitly using `extends: base` (#1640)
|
149
|
-
* allow theme to configure number of index columns using `
|
195
|
+
* allow theme to configure number of index columns using `index-columns` key (#1663)
|
150
196
|
* configure AsciiDoc table cell to inherit font properties from table and scale font size of nested blocks (#926)
|
151
197
|
* scale font size of literal table cell (#1696)
|
152
198
|
* add support for `id` attribute on link macro
|
@@ -157,13 +203,13 @@ Enhancements::
|
|
157
203
|
* allow admonition icon image to be remote (if allow-uri-read is set) or data URI (#1711)
|
158
204
|
* allow theme to configure font color of unresolved footnote using unresolved role
|
159
205
|
* show textual label on admonition if icon image fails to embed (#1741)
|
160
|
-
* allow theme to disable title page by assigning false to `
|
206
|
+
* allow theme to disable title page by assigning false to `title-page` category key (#1754)
|
161
207
|
* allow Rouge theme to be specified as theme class or instance (API only)
|
162
208
|
* allow theme to control font size of dot leader in TOC
|
163
|
-
* allow section to override outlinelevels for self and children using `outlinelevels` attribute on section
|
209
|
+
* allow section to override `outlinelevels` for self and children using `outlinelevels` attribute on section
|
164
210
|
* use value of `author` attribute for PDF info and pdfmark if locked by the API (#1778)
|
165
211
|
* only extend theme in extends hierarchy once unless modified with `!important` (#1800)
|
166
|
-
* add print-optimized themes (default-for-print and default-for-print-with-fallback-font) (#1699)
|
212
|
+
* add print-optimized themes (`default-for-print` and `default-for-print-with-fallback-font`) (#1699)
|
167
213
|
* add support for power operator in theme (with same precedence as multiply and divide) (#1813)
|
168
214
|
* include floor and ceil match characters in fallback font (#1832) (*@oddhack*)
|
169
215
|
* allow horizontal and vertical lines of table grid to be styled independently (#1875) (*@hextremist*)
|
@@ -190,7 +236,7 @@ Bug Fixes::
|
|
190
236
|
* do not insert blank line in index when term is forced to break (#1665)
|
191
237
|
* honor prepress page margins on subsequent pages in index (#1929)
|
192
238
|
* use more robust strategy for line height normalization that accounts for case when line contains only monospaced text (#1650)
|
193
|
-
* add support for line-height property on lead role as documented
|
239
|
+
* add support for `line-height` property on `lead` role as documented
|
194
240
|
* prevent generator from allocating space for placeholder null char (used for anchors) if font is missing glyph (#1672)
|
195
241
|
* ensure background and admonition icon image files are closed after being read (#1566)
|
196
242
|
* ensure temporary images generated by running content are cleaned up (#1566)
|
@@ -247,10 +293,10 @@ Bug Fixes::
|
|
247
293
|
* fix vertical center alignment of normal table cell
|
248
294
|
* short-circuit xreftext containing a circular reference path
|
249
295
|
* prevent PDF page import from corrupting references in PDF (#1726)
|
250
|
-
* display decimal list marker correctly when list is reversed (e.g., 10., 09., 08., etc)
|
296
|
+
* display decimal list marker correctly when list is reversed (e.g., 10., 09., 08., etc.)
|
251
297
|
* use correct spacing for dotted border dash on table (length and spacing should match width)
|
252
298
|
* set color space on page with only image so font color is preserved in running content (#1742)
|
253
|
-
* compute font size for superscript and subscript correctly when parent element uses em and
|
299
|
+
* compute font size for superscript and subscript correctly when parent element uses `em` and `%` units (#1745)
|
254
300
|
* respect hyphenation exceptions when word is adjacent to non-word character (#1715)
|
255
301
|
* fix crash when TOC is enabled and index is empty
|
256
302
|
* align TOC section properly when index exceeds one page and `section_indent` is positive (#1735)
|
@@ -285,7 +331,7 @@ Bug Fixes::
|
|
285
331
|
* verify alignment of list marker in AsciiDoc table cell (#1965)
|
286
332
|
* don't crash if value of `width` attribute on image has invalid format (#1970)
|
287
333
|
* don't render borders and backgrounds in scratch document
|
288
|
-
* don't insert blank page after document title if first block (chapter or toc macro) has nonfacing option (#1988)
|
334
|
+
* don't insert blank page after document title if first block (chapter or toc macro) has `nonfacing` option (#1988)
|
289
335
|
* coerce negated variable reference to number if value of variable is numeric
|
290
336
|
* prepress page margins should honor value of `pdf-folio-placement` (#1918)
|
291
337
|
* ensure callout number in callout list stays with primary text when item is advanced to next page (#1967)
|
@@ -561,7 +607,7 @@ Bug Fixes::
|
|
561
607
|
* allow theme to control font properties (font size, font color, etc) of description list term (#1289)
|
562
608
|
* allow theme to override caption styles for specific block categories: blockquote, code, example, footnotes, image, listing, and table (#307)
|
563
609
|
* allow theme to control style of verse block independently of a quote block (#40)
|
564
|
-
* position list marker correctly when media=prepress and list item is advanced to next page or split across pages (#1303)
|
610
|
+
* position list marker correctly when `media=prepress` and list item is advanced to next page or split across pages (#1303)
|
565
611
|
* layout horizontal dlist in two columns (#310)
|
566
612
|
* apply normal substitutions to content of manname section (#1294)
|
567
613
|
* optimize PDF using quality specified in value of optimize attribute if optimize attribute is set (#535)
|
@@ -598,7 +644,7 @@ Bug Fixes::
|
|
598
644
|
* allow multiple font dirs to be specified using the pdf-fontsdir attribute (#80)
|
599
645
|
* fill and stroke bounds of example across all pages (#362)
|
600
646
|
* allow page background color and background image to be used simultaneously (#1186)
|
601
|
-
* allow theme to
|
647
|
+
* allow theme to specify initial zoom (#305)
|
602
648
|
* strip surrounding whitespace from text in normal table cells
|
603
649
|
* allow attribute references to be used in image paths in theme (#588)
|
604
650
|
* resolve variables in font catalog in theme file
|
@@ -611,11 +657,11 @@ Bug Fixes::
|
|
611
657
|
* reduce min font size in base theme
|
612
658
|
* allow theme to configure the minimum height required after a section title for it to stay on same page (#1210)
|
613
659
|
* convert hyphen to underscore in theme key for admonition icon type (#1217)
|
614
|
-
* always resolve images in running content relative to themesdir (instead of document) (#1183)
|
660
|
+
* always resolve images in running content relative to `themesdir` (instead of document) (#1183)
|
615
661
|
* fix placement of toc in article when doctitle is not set (#1240)
|
616
662
|
* honor text alignment role on abstract paragraph(s)
|
617
|
-
* don't insert blank page at start of document if media=prepress and document does not have a cover (#1181)
|
618
|
-
* insert blank page after cover if media=prepress (#1181)
|
663
|
+
* don't insert blank page at start of document if `media=prepress` and document does not have a cover (#1181)
|
664
|
+
* insert blank page after cover if `media=prepress` (#1181)
|
619
665
|
* add support for stretch role on table (as preferred alias for spread) (#1225)
|
620
666
|
* include revremark on title page if specified (#1198)
|
621
667
|
* allow theme to configure border around block image (#767)
|
@@ -639,13 +685,13 @@ Bug Fixes::
|
|
639
685
|
* only apply title page background image to the title page (#1144)
|
640
686
|
* make sure title page background or color (and only title page background or color) gets applied to title page even when page has already been created (#1144)
|
641
687
|
* fix crash when image_width is defined in theme (#995)
|
642
|
-
* fix crash when toc is enabled and toc-title attribute is unset
|
688
|
+
* fix crash when toc is enabled and `toc-title` attribute is unset
|
643
689
|
* correctly map legacy Font Awesome icon names when icon set is not specified (#1157)
|
644
690
|
* coerce color values in theme that contain uppercase letters (#1149)
|
645
691
|
* prevent table alignment from modifying margins of subsequent pages; only align table if width is less than bounds (#1170)
|
646
692
|
* ensure base font color is set
|
647
693
|
* use more robust mechanism to detect an empty page; tare content stream after adding page background color or image
|
648
|
-
* ignore pdf-themesdir unless pdf-theme is specified (#1167)
|
694
|
+
* ignore `pdf-themesdir` unless pdf-theme is specified (#1167)
|
649
695
|
* allow theme to control glyphs used for conums (#133)
|
650
696
|
* allow theme to control background and border of inline kbd (#313, #1004)
|
651
697
|
* add support for link on image in running content (#1002)
|
@@ -662,12 +708,12 @@ Bug Fixes::
|
|
662
708
|
|
663
709
|
== 1.5.0.beta.1 (2019-07-08) - @mojavelinux
|
664
710
|
|
665
|
-
* rename pdf-style and pdf-stylesdir attributes to pdf-theme and pdf-themesdir
|
666
|
-
* don't load fallback font by default; move fallback font to default-with-fallback-font theme
|
711
|
+
* rename `pdf-style` and `pdf-stylesdir` attributes to `pdf-theme` and `pdf-themesdir`, respectively (while still honoring the old names for compatibility) (#1127)
|
712
|
+
* don't load fallback font by default; move fallback font to `default-with-fallback-font` theme
|
667
713
|
* apply cell padding to table cells in the head row (#1098)
|
668
|
-
* allow the theme to control the padding of table cells in the head row using the table_head_cell_padding key (#1098)
|
714
|
+
* allow the theme to control the padding of table cells in the head row using the `table_head_cell_padding` key (#1098)
|
669
715
|
* fix position of table caption for reduced-width tables when caption align is center (#1138)
|
670
|
-
* adjust width of table caption to match width of table unless table_caption_max_width is none in theme (#1138)
|
716
|
+
* adjust width of table caption to match width of table unless `table_caption_max_width` is none in theme (#1138)
|
671
717
|
* fix position of text in running header (#1087)
|
672
718
|
* ignore start attribute on ordered list if marker is disabled
|
673
719
|
* allow start value to be negative for ordered lists that use arabic or roman numbering (#498)
|
@@ -676,13 +722,13 @@ Bug Fixes::
|
|
676
722
|
* scale SVG background image to fit page in the same way raster image is scaled (#765)
|
677
723
|
* allow page background size to be controlled using image macro attributes (#1117)
|
678
724
|
* allow page background image position to be controlled using position attribute on image macro (#1124)
|
679
|
-
* add support for fit=cover for cover, page background, and running content images (#1136)
|
725
|
+
* add support for `fit=cover` for cover, page background, and running content images (#1136)
|
680
726
|
* change default background image position to center (#1124)
|
681
727
|
* allow cover image position to be controlled using position attribute on image macro (#1134)
|
682
728
|
* change default cover image position to center (#1134)
|
683
729
|
* allow cover image size to be controlled using fit, pdfwidth, and width attributes; don't scale image by default (#1134)
|
684
|
-
* set enable_file_requests_with_root and enable_web_requests options for all SVGs (#683)
|
685
|
-
* automatically set pdf-stylesdir if pdf-style ends with .yml and pdf-stylesdir is not specified (#1126)
|
730
|
+
* set `enable_file_requests_with_root` and `enable_web_requests` options for all SVGs (#683)
|
731
|
+
* automatically set `pdf-stylesdir` if `pdf-style` ends with .yml and `pdf-stylesdir` is not specified (#1126)
|
686
732
|
* replace hyphens with underscores in top-level theme keys
|
687
733
|
* allow hyphens to be used in variable references in theme (#1122)
|
688
734
|
* allow theme to control background and border of inline code (literal) (#306)
|
@@ -730,7 +776,7 @@ Bug Fixes::
|
|
730
776
|
* add visual regression capability to test suite (@beatchristen)
|
731
777
|
* ensure index section doesn't get numbered when using Asciidoctor < 1.5.7
|
732
778
|
* add part signifier and part number to part title if partnums is set; allow signifier to be customized using part-signifier attribute (#597)
|
733
|
-
* add support for the chapter-signifier attribute as the
|
779
|
+
* add support for the chapter-signifier attribute as the preferred alternative to chapter-label
|
734
780
|
* warn if the image referenced in the running content cannot be found (#731)
|
735
781
|
|
736
782
|
== 1.5.0.alpha.17 (2019-04-23) - @mojavelinux
|
@@ -743,7 +789,7 @@ Bug Fixes::
|
|
743
789
|
* drop support for Rouge < 2
|
744
790
|
* add a test suite (#37)
|
745
791
|
* allow running content (header and footer) to be enabled on title and toc pages; controlled by running_content_start_at property in theme (#606)
|
746
|
-
* add support for nbsp named entity (i.e., `+ `); replace
|
792
|
+
* add support for nbsp named entity (i.e., `+ `); replace occurrences of nbsp named entity with a single space in outline
|
747
793
|
* upgrade to FontAwesome 5; introduce the fas, far, and fab icon sets, now preferred over fa; drop support for octicons (#891) (@jessedoyle)
|
748
794
|
* place footnotes at end of chapters in books or end of document otherwise (#85) (@bcourtine)
|
749
795
|
* fix rendering of footnotes directly adjacent to text in a normal table cell (#927)
|
@@ -755,14 +801,14 @@ Bug Fixes::
|
|
755
801
|
* set line spacing for non-AsciiDoc table cells (#296)
|
756
802
|
* consider all scripts when looking for leading alpha characters in index (#853)
|
757
803
|
* don't create title page for article doctype unless title-page attribute is set (#105)
|
758
|
-
* don't show article title if notitle attribute is set (#998)
|
804
|
+
* don't show article title if `notitle` attribute is set (#998)
|
759
805
|
* generate name section for manpage doctype automatically (#882)
|
760
806
|
* remove unprocessed passthroughs in literal cells
|
761
807
|
* apply font style from theme to formatted text description list term (#854)
|
762
808
|
* prevent tempfile for remote image from being deleted before it's used (#947)
|
763
809
|
* handle case when uri to make breakable is empty (#936)
|
764
|
-
* add support for frame=ends as alternative to frame=topbot on table
|
765
|
-
* allow table frame and grid to be set globally using the table-frame and table-grid attributes (#822)
|
810
|
+
* add support for `frame=ends` as alternative to `frame=topbot` on table
|
811
|
+
* allow table frame and grid to be set globally using the `table-frame` and `table-grid` attributes (#822)
|
766
812
|
* disable table stripes by default (#1049)
|
767
813
|
* allow table stripes to be enabled globally using table-stripes attribute (#1049)
|
768
814
|
* use new logging subsystem, if available; otherwise, use shim (#905)
|
@@ -822,8 +868,8 @@ Bug Fixes::
|
|
822
868
|
* document in README how to install Asciidoctor PDF on Ruby 2.0.0
|
823
869
|
* enable Travis CI; configure CI-based deployment to RubyGems.org
|
824
870
|
|
825
|
-
{
|
826
|
-
{
|
871
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.16[issues resolved] |
|
872
|
+
{url-repo}/releases/tag/v1.5.0.alpha.16[git tag]
|
827
873
|
|
828
874
|
== 1.5.0.alpha.15 (2017-03-27) - @mojavelinux
|
829
875
|
|
@@ -857,8 +903,8 @@ Bug Fixes::
|
|
857
903
|
* document that background images are scaled to fit bounds of page
|
858
904
|
* add note in theming guide about using double quoted strings
|
859
905
|
|
860
|
-
{
|
861
|
-
{
|
906
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.15[issues resolved] |
|
907
|
+
{url-repo}/releases/tag/v1.5.0.alpha.15[git tag]
|
862
908
|
|
863
909
|
== 1.5.0.alpha.14 (2017-02-05) - @mojavelinux
|
864
910
|
|
@@ -964,16 +1010,16 @@ Bug Fixes::
|
|
964
1010
|
* clarify in README how inline image are sized
|
965
1011
|
* clarify instructions in README about how to specify a page number range for printing
|
966
1012
|
* document in theming guide how to define and apply a custom Rouge theme
|
967
|
-
* rename pdfmarks to pdfmarks
|
1013
|
+
* rename `pdfmarks` to `pdfmarks`; document pdfmark attribute in theming guide
|
968
1014
|
* describe the quoted string value type in the theming guide
|
969
1015
|
* add self-referencing anchor to each key prefix in theming guide
|
970
|
-
* document nonfacing option for sections (@jnerlich)
|
971
|
-
* fix documentation for toc_dot_leader_font_color in theming guide (@davidgamba)
|
1016
|
+
* document `nonfacing` option for sections (@jnerlich)
|
1017
|
+
* fix documentation for `toc_dot_leader_font_color` in theming guide (@davidgamba)
|
972
1018
|
* document that dot leader inherits font properties from toc category
|
973
1019
|
* fill in missing defaults for keys in theming guide
|
974
1020
|
* rewrite intro to Keys section in theming guide
|
975
1021
|
* add keys for prose, menu, and conum categories to theming guide
|
976
|
-
* document outline_list_marker_font_color key in theming guide
|
1022
|
+
* document `outline_list_marker_font_color` key in theming guide
|
977
1023
|
* refactor measurement value helpers into module (#677)
|
978
1024
|
* add reproducible flag to examples
|
979
1025
|
* add inline ref and corresponding xref to chronicles example
|
@@ -981,12 +1027,12 @@ Bug Fixes::
|
|
981
1027
|
* update instructions and Gemfile config to use with Ruby 1.9.3
|
982
1028
|
* configure build as the default rake task
|
983
1029
|
|
984
|
-
{
|
985
|
-
{
|
1030
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.14[issues resolved] |
|
1031
|
+
{url-repo}/releases/tag/v1.5.0.alpha.14[git tag]
|
986
1032
|
|
987
1033
|
== 1.5.0.alpha.13 (2016-09-19) - @mojavelinux
|
988
1034
|
|
989
|
-
* Add support for mirror (recto/verso) margins and facing pages when media=prepress
|
1035
|
+
* Add support for mirror (recto/verso) margins and facing pages when `media=prepress`
|
990
1036
|
* Add non-breaking hyphen glyph to built-in fonts so its intended behavior is honored (#462)
|
991
1037
|
* Add page break before a book part (#329)
|
992
1038
|
* Allow running (header/footer) content to be arranged in columns (#449)
|
@@ -1001,7 +1047,7 @@ Bug Fixes::
|
|
1001
1047
|
* Add support for literal and verse table cell styles
|
1002
1048
|
* Preserve indentation in literal and verse table cells
|
1003
1049
|
* Preserve paragraph breaks in normal table cells
|
1004
|
-
* Honor value of width attribute even when autowidth option is set on table (#519)
|
1050
|
+
* Honor value of width attribute even when `autowidth` option is set on table (#519)
|
1005
1051
|
* Align table title to left edge of table, regardless of table alignment (#469)
|
1006
1052
|
* Add support for reversed option on ordered list (#491)
|
1007
1053
|
* Don't drop whitespace in front of conum on final line of source block (#470)
|
@@ -1011,16 +1057,16 @@ Bug Fixes::
|
|
1011
1057
|
* Resolve bare image-related attribute values relative to base_dir
|
1012
1058
|
* Only allow Prawn SVG to fetch remote images if the allow-uri-read attribute is set (#548)
|
1013
1059
|
* Introduce page_margin_inner and page_margin_outer keys to theme
|
1014
|
-
* Start title page, toc, main content, parts, and chapters on recto page when media=prepress and doctype=book
|
1015
|
-
* Allow default font style for table to be set via theme (table_font_style)
|
1060
|
+
* Start title page, toc, main content, parts, and chapters on recto page when `media=prepress` and `doctype=book`
|
1061
|
+
* Allow default font style for table to be set via theme (`table_font_style`)
|
1016
1062
|
* Use correct default bullet per nested unordered list level (#529)
|
1017
|
-
* Call start_new_part at start of each book part
|
1018
|
-
* Delegate to layout_part_title method to layout part title
|
1063
|
+
* Call `start_new_part` at start of each book part
|
1064
|
+
* Delegate to `layout_part_title` method to layout part title
|
1019
1065
|
* Don't match a special section as a chapter unless the doctype is book
|
1020
1066
|
* Fix list marker placement when list item touches bottom of page
|
1021
1067
|
* Eliminate excessive spacing between list items that contain nested lists
|
1022
1068
|
* Drop lines in running (header/footer) content with unresolved attributes (#522)
|
1023
|
-
* Ensure start_new_chapter is always executed at a chapter transition (#524)
|
1069
|
+
* Ensure `start_new_chapter` is always executed at a chapter transition (#524)
|
1024
1070
|
* Add support for root xref (e.g., <<included-doc#>>) (#521)
|
1025
1071
|
* Prevent block from spilling to next page if there's no more content (#361)
|
1026
1072
|
* Add support for px units to pdf-page-size attribute
|
@@ -1048,8 +1094,8 @@ Bug Fixes::
|
|
1048
1094
|
* Configure README for better preview on GitHub
|
1049
1095
|
* Update chronicles example to modern AsciiDoc syntax; update content
|
1050
1096
|
|
1051
|
-
{
|
1052
|
-
{
|
1097
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.13[issues resolved] |
|
1098
|
+
{url-repo}/releases/tag/v1.5.0.alpha.13[git tag]
|
1053
1099
|
|
1054
1100
|
== 1.5.0.alpha.12 (2016-08-05) - @mojavelinux
|
1055
1101
|
|
@@ -1066,7 +1112,7 @@ Bug Fixes::
|
|
1066
1112
|
* Document theme-related AsciiDoc attributes in theming guide (#428)
|
1067
1113
|
* Section title alignment should be customizable via theme (#343)
|
1068
1114
|
* Collapse all whitespace when normalizing (#355)
|
1069
|
-
* Require space on either side of math operator to avoid
|
1115
|
+
* Require space on either side of math operator to avoid interpreting dates as math equations (#429)
|
1070
1116
|
* Allow specifying a font style for a title on the title page (#423)
|
1071
1117
|
* Fix Prawn SVG to support arrow heads on lines (#75)
|
1072
1118
|
* Upgrade prawn-svg to 0.25.1
|
@@ -1085,8 +1131,8 @@ Bug Fixes::
|
|
1085
1131
|
* Add hints to theming guide about how to apply styles when using Maven or Gradle (@fwilhe)
|
1086
1132
|
* Fix gemspec to collect files when project is not a git repository or git is not available
|
1087
1133
|
|
1088
|
-
{
|
1089
|
-
{
|
1134
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.12[issues resolved] |
|
1135
|
+
{url-repo}/releases/tag/v1.5.0.alpha.12[git tag]
|
1090
1136
|
|
1091
1137
|
== 1.5.0.alpha.11 (2016-01-05) - @mojavelinux
|
1092
1138
|
|
@@ -1109,14 +1155,14 @@ Bug Fixes::
|
|
1109
1155
|
* Document that page background colors & images do not currently work in AsciidoctorJ PDF
|
1110
1156
|
* Use failproof relative require logic in bin script
|
1111
1157
|
|
1112
|
-
{
|
1113
|
-
{
|
1158
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.11[issues resolved] |
|
1159
|
+
{url-repo}/releases/tag/v1.5.0.alpha.11[git tag]
|
1114
1160
|
|
1115
1161
|
== 1.5.0.alpha.10 (2015-11-01) - @mojavelinux
|
1116
1162
|
|
1117
1163
|
* Allow admonition icon to be customized by theme (#121) (@jessedoyle)
|
1118
1164
|
* Update to prawn-icon 1.0.0 (#335) (@jessedoyle)
|
1119
|
-
* Only generate the pdfmarks file if the pdfmarks attribute is set
|
1165
|
+
* Only generate the pdfmarks file if the `pdfmarks` attribute is set
|
1120
1166
|
* Honor table alignment (via align attribute or role) (#299)
|
1121
1167
|
* Use Hash for ViewerPreferences; set initial magnification (#303)
|
1122
1168
|
* Handle case when colpcwidth is unspecified (#314)
|
@@ -1127,8 +1173,8 @@ Bug Fixes::
|
|
1127
1173
|
* Document theme key that sets sidebar padding (#344)
|
1128
1174
|
* Handle case when CodeRay passes nil text to text_token
|
1129
1175
|
|
1130
|
-
{
|
1131
|
-
{
|
1176
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.10[issues resolved] |
|
1177
|
+
{url-repo}/releases/tag/v1.5.0.alpha.10[git tag]
|
1132
1178
|
|
1133
1179
|
== 1.5.0.alpha.9 (2015-08-02) - @mojavelinux
|
1134
1180
|
|
@@ -1163,8 +1209,8 @@ Bug Fixes::
|
|
1163
1209
|
* Upgrade thread_safe gem
|
1164
1210
|
* Prevent crash if doc has no sections (@abatalev)
|
1165
1211
|
|
1166
|
-
{
|
1167
|
-
{
|
1212
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.9[issues resolved] |
|
1213
|
+
{url-repo}/releases/tag/v1.5.0.alpha.9[git tag]
|
1168
1214
|
|
1169
1215
|
== 1.5.0.alpha.8 (2015-06-23) - @mojavelinux
|
1170
1216
|
|
@@ -1201,8 +1247,8 @@ Bug Fixes::
|
|
1201
1247
|
* Update theming guide
|
1202
1248
|
* Fix cross references in README
|
1203
1249
|
|
1204
|
-
{
|
1205
|
-
{
|
1250
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.8[issues resolved] |
|
1251
|
+
{url-repo}/releases/tag/v1.5.0.alpha.8[git tag]
|
1206
1252
|
|
1207
1253
|
== 1.5.0.alpha.7 (2015-05-31) - @mojavelinux
|
1208
1254
|
|
@@ -1232,7 +1278,7 @@ Bug Fixes::
|
|
1232
1278
|
* Show warning when image cannot be read (#148)
|
1233
1279
|
* Allow page background image to be specified (#134)
|
1234
1280
|
* Support PDF format as cover page (#113)
|
1235
|
-
*
|
1281
|
+
* Accommodate numbered list with large numbers (#91)
|
1236
1282
|
* Position list marker correctly (#140)
|
1237
1283
|
* Allow theme to set font size & family of table cells (#139)
|
1238
1284
|
* Unencode character entities in document title (#136)
|
@@ -1255,8 +1301,8 @@ Bug Fixes::
|
|
1255
1301
|
* Use SafeYAML to load theme files
|
1256
1302
|
* Handle transparent value for table background colors
|
1257
1303
|
|
1258
|
-
{
|
1259
|
-
{
|
1304
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.7[issues resolved] |
|
1305
|
+
{url-repo}/releases/tag/v1.5.0.alpha.7[git tag]
|
1260
1306
|
|
1261
1307
|
== 1.5.0.alpha.6 (2014-11-28) - @mojavelinux
|
1262
1308
|
|
@@ -1265,8 +1311,8 @@ Bug Fixes::
|
|
1265
1311
|
* Add example for specifying theme file (Leif Gruenwoldt) (#61)
|
1266
1312
|
* Add thread_safe gem to remove warning when registering converter
|
1267
1313
|
|
1268
|
-
{
|
1269
|
-
{
|
1314
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.6[issues resolved] |
|
1315
|
+
{url-repo}/releases/tag/v1.5.0.alpha.6[git tag]
|
1270
1316
|
|
1271
1317
|
== 1.5.0.alpha.5 (2014-09-15) - @mojavelinux
|
1272
1318
|
|
@@ -1276,35 +1322,35 @@ Bug Fixes::
|
|
1276
1322
|
* Don't activate implicit header include processor by default (#48, #25)
|
1277
1323
|
* Draw box around listings and literal blocks than span more than one page (#11)
|
1278
1324
|
|
1279
|
-
{
|
1280
|
-
{
|
1325
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.5[issues resolved] |
|
1326
|
+
{url-repo}/releases/tag/v1.5.0.alpha.5[git tag]
|
1281
1327
|
|
1282
1328
|
== 1.5.0.alpha.4 (2014-09-09) - @mojavelinux
|
1283
1329
|
|
1284
1330
|
* Fix yield statement so Asciidoctor PDF can be used with JRuby
|
1285
1331
|
* Document that the coderay gem must be installed to run the examples (#42)
|
1286
1332
|
|
1287
|
-
{
|
1288
|
-
{
|
1333
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.4[issues resolved] |
|
1334
|
+
{url-repo}/releases/tag/v1.5.0.alpha.4[git tag]
|
1289
1335
|
|
1290
1336
|
== 1.5.0.alpha.3 (2014-09-08) - @mojavelinux
|
1291
1337
|
|
1292
1338
|
* Remove unnecessary dependencies (tilt, slim, thread_safe)
|
1293
1339
|
|
1294
|
-
{
|
1295
|
-
{
|
1340
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.3[issues resolved] |
|
1341
|
+
{url-repo}/releases/tag/v1.5.0.alpha.3[git tag]
|
1296
1342
|
|
1297
1343
|
== 1.5.0.alpha.2 (2014-09-05) - @mojavelinux
|
1298
1344
|
|
1299
1345
|
* Add magic encoding header to source file so Asciidoctor PDF can be used with Ruby 1.9.3 (#33, #36)
|
1300
1346
|
|
1301
|
-
{
|
1302
|
-
{
|
1347
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.2[issues resolved] |
|
1348
|
+
{url-repo}/releases/tag/v1.5.0.alpha.2[git tag]
|
1303
1349
|
|
1304
1350
|
== 1.5.0.alpha.1 (2014-09-04) - @mojavelinux
|
1305
1351
|
|
1306
1352
|
* Rewrite as proper Asciidoctor converter (#29)
|
1307
1353
|
* Initial pre-release
|
1308
1354
|
|
1309
|
-
{
|
1310
|
-
{
|
1355
|
+
{url-repo}/issues?q=milestone%3Av1.5.0.alpha.1[issues resolved] |
|
1356
|
+
{url-repo}/releases/tag/v1.5.0.alpha.1[git tag]
|