asciidoctor 1.5.6.2 → 1.5.7
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.
Potentially problematic release.
This version of asciidoctor might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +330 -143
- data/README-fr.adoc +441 -0
- data/README-jp.adoc +418 -0
- data/README-zh_CN.adoc +430 -0
- data/README.adoc +454 -0
- data/Rakefile +57 -0
- data/asciidoctor.gemspec +7 -1
- data/data/locale/attributes-ar.adoc +22 -0
- data/data/locale/attributes-bg.adoc +22 -0
- data/data/locale/attributes-ca.adoc +22 -0
- data/data/locale/attributes-cs.adoc +22 -0
- data/data/locale/attributes-da.adoc +22 -0
- data/data/locale/attributes-de.adoc +22 -0
- data/data/locale/attributes-en.adoc +23 -0
- data/data/locale/attributes-es.adoc +22 -0
- data/data/locale/attributes-fa.adoc +22 -0
- data/data/locale/attributes-fi.adoc +22 -0
- data/data/locale/attributes-fr.adoc +22 -0
- data/data/locale/attributes-hu.adoc +22 -0
- data/data/locale/attributes-id.adoc +22 -0
- data/data/locale/attributes-it.adoc +22 -0
- data/data/locale/attributes-ja.adoc +22 -0
- data/data/locale/attributes-kr.adoc +22 -0
- data/data/locale/attributes-nb.adoc +22 -0
- data/data/locale/attributes-nl.adoc +22 -0
- data/data/locale/attributes-nn.adoc +22 -0
- data/data/locale/attributes-pl.adoc +22 -0
- data/data/locale/attributes-pt.adoc +22 -0
- data/data/locale/attributes-pt_BR.adoc +22 -0
- data/data/locale/attributes-ro.adoc +22 -0
- data/data/locale/attributes-ru.adoc +22 -0
- data/data/locale/attributes-sr.adoc +22 -0
- data/data/locale/attributes-sr_Latn.adoc +22 -0
- data/data/locale/attributes-tr.adoc +22 -0
- data/data/locale/attributes-uk.adoc +22 -0
- data/data/locale/attributes-zh_CN.adoc +22 -0
- data/data/locale/attributes-zh_TW.adoc +22 -0
- data/data/locale/attributes.adoc +8 -649
- data/data/stylesheets/asciidoctor-default.css +77 -72
- data/features/xref.feature +366 -7
- data/lib/asciidoctor.rb +107 -93
- data/lib/asciidoctor/abstract_block.rb +247 -239
- data/lib/asciidoctor/abstract_node.rb +56 -58
- data/lib/asciidoctor/block.rb +3 -3
- data/lib/asciidoctor/callouts.rb +1 -1
- data/lib/asciidoctor/cli/invoker.rb +36 -9
- data/lib/asciidoctor/cli/options.rb +63 -25
- data/lib/asciidoctor/converter.rb +23 -13
- data/lib/asciidoctor/converter/base.rb +4 -0
- data/lib/asciidoctor/converter/docbook45.rb +16 -9
- data/lib/asciidoctor/converter/docbook5.rb +115 -97
- data/lib/asciidoctor/converter/factory.rb +29 -31
- data/lib/asciidoctor/converter/html5.rb +229 -192
- data/lib/asciidoctor/converter/manpage.rb +72 -50
- data/lib/asciidoctor/converter/template.rb +12 -12
- data/lib/asciidoctor/core_ext.rb +5 -1
- data/lib/asciidoctor/core_ext/1.8.7/base64/strict_encode64.rb +6 -0
- data/lib/asciidoctor/document.rb +168 -77
- data/lib/asciidoctor/extensions.rb +79 -47
- data/lib/asciidoctor/helpers.rb +33 -11
- data/lib/asciidoctor/inline.rb +3 -2
- data/lib/asciidoctor/list.rb +2 -1
- data/lib/asciidoctor/logging.rb +122 -0
- data/lib/asciidoctor/parser.rb +406 -382
- data/lib/asciidoctor/path_resolver.rb +169 -162
- data/lib/asciidoctor/reader.rb +166 -121
- data/lib/asciidoctor/section.rb +45 -28
- data/lib/asciidoctor/stylesheets.rb +13 -5
- data/lib/asciidoctor/substitutors.rb +328 -254
- data/lib/asciidoctor/table.rb +105 -48
- data/lib/asciidoctor/timings.rb +34 -6
- data/lib/asciidoctor/version.rb +1 -1
- data/man/asciidoctor.1 +41 -23
- data/man/asciidoctor.adoc +14 -8
- data/test/api_test.rb +1004 -0
- data/test/attributes_test.rb +241 -50
- data/test/blocks_test.rb +549 -124
- data/test/converter_test.rb +170 -78
- data/test/document_test.rb +208 -767
- data/test/extensions_test.rb +188 -53
- data/test/fixtures/custom-backends/slim/html5/block_paragraph.html.slim +1 -1
- data/test/fixtures/custom-backends/slim/html5/block_sidebar.html.slim +1 -1
- data/test/fixtures/file-with-missing-include.adoc +1 -0
- data/test/fixtures/include-file.jsx +8 -0
- data/test/fixtures/lists.adoc +96 -0
- data/test/fixtures/other-chapters.adoc +11 -0
- data/test/fixtures/outer-include.adoc +5 -0
- data/test/fixtures/sample.asciidoc +5 -1
- data/test/fixtures/subdir/index.adoc +3 -0
- data/test/fixtures/subdir/inner-include.adoc +3 -0
- data/test/fixtures/subdir/middle-include.adoc +5 -0
- data/test/fixtures/tagged-class-enclosed.rb +0 -1
- data/test/fixtures/unclosed-tag.adoc +3 -0
- data/test/fixtures/unexpected-end-tag.adoc +4 -0
- data/test/invoker_test.rb +101 -40
- data/test/links_test.rb +266 -72
- data/test/lists_test.rb +243 -45
- data/test/logger_test.rb +211 -0
- data/test/manpage_test.rb +124 -6
- data/test/options_test.rb +46 -1
- data/test/paragraphs_test.rb +23 -10
- data/test/parser_test.rb +30 -1
- data/test/paths_test.rb +115 -33
- data/test/preamble_test.rb +1 -1
- data/test/reader_test.rb +337 -81
- data/test/sections_test.rb +656 -72
- data/test/substitutions_test.rb +182 -57
- data/test/tables_test.rb +324 -57
- data/test/test_helper.rb +77 -32
- data/test/text_test.rb +7 -7
- metadata +67 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 4c9adee957fdfaa129f4d6ddfc82ae51a1352ea6b3cdd6ac094651099be3e4c7
         | 
| 4 | 
            +
              data.tar.gz: a193373b8636c2a7196761d0d05cd3c2e3dfb62a4cf304064cc522e3d274c826
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: be33314441c4496231066060394f5df643de75f0ad7bbd02b37c474ef4dc451333e9bb21744d53c5267b11daf12fc9658ad12505f385ce3bcab4d18ce6d64941
         | 
| 7 | 
            +
              data.tar.gz: 45272e1a562a3eb49e493a55545190cdf2a77af74668f154fe9a935b5ca7af3bd9878fa86cd298b9d0b1539b1c3b024b36855fbc0e672b6bd9be15b28ccf2fa5
         | 
    
        data/CHANGELOG.adoc
    CHANGED
    
    | @@ -13,6 +13,183 @@ endif::[] | |
| 13 13 | 
             
            This document provides a high-level view of the changes introduced in Asciidoctor by release.
         | 
| 14 14 | 
             
            For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.
         | 
| 15 15 |  | 
| 16 | 
            +
            == 1.5.7 (2018-05-02) - @mojavelinux
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            Enhancements::
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              * BREAKING: drop XML tags, character refs, and non-word characters (except hyphen, dot, and space) when auto-generating section IDs (#794)
         | 
| 21 | 
            +
               ** hyphen, dot, and space are replaced with value of idseparator, if set; otherwise, spaces are dropped
         | 
| 22 | 
            +
              * allow attribute names to contain any word character defined by Unicode (#2376, PR #2393)
         | 
| 23 | 
            +
              * route all processor messages through a logger instead of using Kernel#warn (#44, PR #2660)
         | 
| 24 | 
            +
              * add MemoryLogger for capturing messages sent to logger into memory (#44, PR #2660)
         | 
| 25 | 
            +
              * add NullLogger to prevent messages from being logged (#44, PR #2660)
         | 
| 26 | 
            +
              * log message containing source location / cursor as an object; provides more context (#44, PR #2660)
         | 
| 27 | 
            +
              * pass cursor for include file to `:include_location` key in message context (PR #2729)
         | 
| 28 | 
            +
              * add `:logger` option to API to set logger instance (#44, PR #2660)
         | 
| 29 | 
            +
              * add `--failure-level=LEVEL` option to CLI to force non-zero exit code if specified logging level is reached (#2003, PR #2674)
         | 
| 30 | 
            +
              * parse text of xref macro as attributes if attribute signature found (equal sign) (#2381)
         | 
| 31 | 
            +
              * allow xrefstyle to be specified per xref by assigning the xrefstyle attribute on the xref macro (#2365)
         | 
| 32 | 
            +
              * recognize target with .adoc extension in xref macro as an interdocument xref
         | 
| 33 | 
            +
              * resolve nested includes in remote documents relative to URI (#2506, PR #2511)
         | 
| 34 | 
            +
              * allow `relfilesuffix` attribute to control file extension used for interdoc xrefs (#1273)
         | 
| 35 | 
            +
              * support `!name@` (preferred), `!name=@`, `name!@`, and `name!=@` syntax to soft unset attribute from API or CLI (#642, PR #2649)
         | 
| 36 | 
            +
              * allow modifier to be placed at end of name to soft set an attribute (e.g., `icons@=font`) (#642, PR #2649)
         | 
| 37 | 
            +
              * interpret `false` attribute value defined using API as a soft unset (#642, PR #2649)
         | 
| 38 | 
            +
              * number parts if `partnums` attribute is set (#2298)
         | 
| 39 | 
            +
              * allow footnote macro to define or reference footnote reference (footnoteref macro now deprecated) (#2347, PR #2362)
         | 
| 40 | 
            +
              * allow custom converter to be used with custom templates; converter must declare that it supports templates (#2619)
         | 
| 41 | 
            +
              * allow manpage path for manpage help topic to be specified using ASCIIDOCTOR_MANPAGE_PATH environment variable (PR #2653) (*@aerostitch*)
         | 
| 42 | 
            +
              * if manpage cannot be found in default path inside gem, use `man -w asciidoctor` to resolve installed path (PR #2653)
         | 
| 43 | 
            +
              * uncompress contents of manpage for manpage help topic if path ends with .gz (PR #2653) (*@aerostitch*)
         | 
| 44 | 
            +
              * define source and manual refmiscinfo entries in manpage output if manual and source attributes are defined (PR #2636) (*@tiwai*)
         | 
| 45 | 
            +
              * add syntax for adding hard line breaks in block AsciiMath equations (#2497, PR #2579) (*@dimztimz*)
         | 
| 46 | 
            +
              * add positioning option to sectanchors attribute (sectanchors=before or sectanchors=after) (#2485, PR #2486)
         | 
| 47 | 
            +
              * allow table striping to be configured using stripes attribute (even, odd, all, or none) or stripes roles on table (#1365, PR #2588)
         | 
| 48 | 
            +
              * recognize `ends` as an alias to `topbot` for configuring the table frame
         | 
| 49 | 
            +
              * add rel=nofollow property to links (text or image) when nofollow option is set (#2605, PR #2692)
         | 
| 50 | 
            +
              * populate Document#source_location when sourcemap option is enabled (#2478, PR #2488)
         | 
| 51 | 
            +
              * populate source_location property on list items when sourcemap option is set on document (PR #2069) (*@mogztter*)
         | 
| 52 | 
            +
              * populate Table::Cell#source_location when sourcemap option is enabled (#2705)
         | 
| 53 | 
            +
              * allow local include to be flagged as optional by setting optional option (#2389, PR #2413)
         | 
| 54 | 
            +
              * allow block title to begin with a period (#2358, PR #2359)
         | 
| 55 | 
            +
              * catalog inline anchor at start of list items in ordered and unordered lists, description list terms, and table cells (#2257)
         | 
| 56 | 
            +
              * register document in catalog if id is set; assign reftext to document attributes if specified in a block attribute line (#2301, PR #2428)
         | 
| 57 | 
            +
              * allow automatic width to be applied to individual columns in a table using the special value `~` (#1844)
         | 
| 58 | 
            +
              * use the quote element in DocBook converter to represent smart quotes (#2272, PR #2356) (@bk2204)
         | 
| 59 | 
            +
              * parse and pass all manpage names to output document master (i.e., shadow man pages) (#1811, #2543, PR #2414)
         | 
| 60 | 
            +
              * parse credit line of shorthand quote block as block attributes; apply normal subs to credit line in shorthand quote blocks (#1667, PR #2452)
         | 
| 61 | 
            +
              * populate copyright element in DocBook output from value of copyright attribute (#2728)
         | 
| 62 | 
            +
              * preserve directories if source dir and destination dir are set (#1394, PR #2421)
         | 
| 63 | 
            +
              * allow linkcss to be unset from API or CLI when safe mode is secure
         | 
| 64 | 
            +
              * convert quote to epigraph element in DocBook output if block has epigraph role (#1195, PR #2664) (*@bk2204*)
         | 
| 65 | 
            +
              * number special sections in addition to regular sections when sectnums=all (#661, PR #2463)
         | 
| 66 | 
            +
              * upgrade to Font Awesome 4.7.0 (#2569)
         | 
| 67 | 
            +
              * upgrade to MathJax 4.7.4
         | 
| 68 | 
            +
             | 
| 69 | 
            +
            Bug fixes::
         | 
| 70 | 
            +
             | 
| 71 | 
            +
              * set `:to_dir` option value correctly when output file is specified (#2382)
         | 
| 72 | 
            +
              * preserve leading indentation in contents of AsciiDoc table cell if contents starts with a newline (#2712)
         | 
| 73 | 
            +
              * the shorthand syntax on the style to set block attributes (id, roles, options) no longer resets block style (#2174)
         | 
| 74 | 
            +
              * match include tags anywhere on line as long as offset by word boundary on left and space or newline on right (#2369, PR #2683)
         | 
| 75 | 
            +
              * warn if an include tag specified in the include directive is unclosed in the included file (#2361, PR #2696)
         | 
| 76 | 
            +
              * use correct parse mode when parsing blocks attached to list item (#1926)
         | 
| 77 | 
            +
              * fix typo in gemspec that removed README and CONTRIBUTING files from the generated gem (PR #2650) (*@aerostitch*)
         | 
| 78 | 
            +
              * preserve id, role, title, and reftext on open block when converting to DocBook; wrap in `<para>` or `<formalpara>` (#2276)
         | 
| 79 | 
            +
              * don't turn bare URI scheme (no host) into a link (#2609, PR #2611)
         | 
| 80 | 
            +
              * don't convert inter-document xref to internal anchor unless entire target file is included into current file (#2200)
         | 
| 81 | 
            +
              * fix em dash replacement in manpage converter (#2604, PR #2607)
         | 
| 82 | 
            +
              * don't output e-mail address twice when replacing bare e-mail address in manpage output (#2654, PR #2665)
         | 
| 83 | 
            +
              * use alternate macro for monospaced text in manpage output to not conflict w/ AsciiDoc macros (#2751)
         | 
| 84 | 
            +
              * enforce that absolute start path passed to PathResolver#system_path is inside of jail path (#2642, PR #2644)
         | 
| 85 | 
            +
              * fix behavior of PathResolver#descends_from? when base path equals / (#2642, PR #2644)
         | 
| 86 | 
            +
              * automatically recover if start path passed to PathResolver#system_path is outside of jail path (#2642, PR #2644)
         | 
| 87 | 
            +
              * re-enable left justification after invoking tmac URL macro (#2400, PR #2409)
         | 
| 88 | 
            +
              * don't report warning about same level 0 section multiple times (#2572)
         | 
| 89 | 
            +
              * record timings when calling convert and write on Document (#2574, PR #2575)
         | 
| 90 | 
            +
              * duplicate header attributes when restoring; allows header attributes to be restored an arbitrary number of times (#2567, PR #2570)
         | 
| 91 | 
            +
              * propagate `:catalog_assets` option to nested document (#2564, PR #2565)
         | 
| 92 | 
            +
              * preserve newlines in quoted CSV data (#2041)
         | 
| 93 | 
            +
              * allow opening quote around quoted CSV field to be on a line by itself
         | 
| 94 | 
            +
              * output table footer after body rows (#2556, PR #2566) (*@PauloFrancaLacerda*)
         | 
| 95 | 
            +
              * move @page outside of @media print in default stylesheet (#2531, PR #2532)
         | 
| 96 | 
            +
              * don't throw exception if text of dd node is nil (#2529, PR #2530)
         | 
| 97 | 
            +
              * don't double escape ampersand in manpage output (#2525) (*@dimztimz*)
         | 
| 98 | 
            +
              * fix crash when author_1 attribute is assigned directly (#2481, PR #2487)
         | 
| 99 | 
            +
              * fix CSS for highlighted source block inside colist (#2474, PR #2490)
         | 
| 100 | 
            +
              * don't append file extension to data uri of admonition icon (#2465, PR #2466)
         | 
| 101 | 
            +
              * fix race condition in Helpers.mkdir_p (#2457, PR #2458)
         | 
| 102 | 
            +
              * correctly process nested passthrough inside unconstrained monospaced (#2442, PR #2443)
         | 
| 103 | 
            +
              * add test to ensure ampersand in author line is not double escaped (#2439, PR #2440)
         | 
| 104 | 
            +
              * prevent footnote ID from clashing with auto-generated footnote IDs (#2019)
         | 
| 105 | 
            +
              * fix alignment of icons in footnote (#2415, PR #2416)
         | 
| 106 | 
            +
              * add graceful fallback if pygments.rb fails to return a value (#2341, PR #2342)
         | 
| 107 | 
            +
              * escape specialchars in source if pygments fails to highlight (#2341)
         | 
| 108 | 
            +
              * do not recognize attribute entry line if name contains colon (PR #2377)
         | 
| 109 | 
            +
              * allow flow indexterm to be enclosed in round brackets (#2363, PR #2364)
         | 
| 110 | 
            +
              * set outfilesuffix to match file extension of output file (#2258, PR #2367)
         | 
| 111 | 
            +
              * add block title to dlist in manpage output (#1611, PR #2434)
         | 
| 112 | 
            +
              * scale text to 80% in print styles (#1484, PR #2576)
         | 
| 113 | 
            +
              * fix alignment of abstract title when using default stylesheet (PR #2732)
         | 
| 114 | 
            +
              * only set nowrap style on table caption for auto-width table (#2392)
         | 
| 115 | 
            +
              * output non-breaking space for man manual if absent in DocBook output (PR #2636)
         | 
| 116 | 
            +
              * don't crash if stem type is not recognized (instead, fallback to asciimath)
         | 
| 117 | 
            +
             | 
| 118 | 
            +
            Improvements / Refactoring::
         | 
| 119 | 
            +
             | 
| 120 | 
            +
              * BREAKING: rename table spread role to stretch (#2589, PR #2591)
         | 
| 121 | 
            +
              * use cursor marks to track lines more accurately; record cursor at the start of each block, list item, or table cell (PR #2701, PR #2547) (*@seikichi*)
         | 
| 122 | 
            +
              * log a warning message if an unterminated delimited block is detected (#1133, PR #2612)
         | 
| 123 | 
            +
              * log a warning when nested section is found inside special section that doesn't support nested sections (#2433, PR #2672)
         | 
| 124 | 
            +
              * read files in binary mode to disable automatic endline coercion (then explicitly coerce to UTF-8) (PR #2583, PR #2694)
         | 
| 125 | 
            +
              * resolve / expand parent references in start path passed to PathResolver#system_path (#2642, PR #2644)
         | 
| 126 | 
            +
              * update PathResolver#expand_path to resolve parent references (#2642, PR #2644)
         | 
| 127 | 
            +
              * allow start path passed to PathResolver#system_path to be outside jail if target brings resolved path back inside jail (#2642, PR #2644)
         | 
| 128 | 
            +
              * don't run File.expand_path on Dir.pwd (assume Dir.pwd is absolute) (#2642, PR #2644)
         | 
| 129 | 
            +
              * posixify working_dir passed to PathResolver constructor if absolute (#2642, PR #2644)
         | 
| 130 | 
            +
              * optimize detection for footnote* and indexterm* macros (#2347, PR #2362)
         | 
| 131 | 
            +
              * log a warning if a footnote reference cannot be resolved (#2669)
         | 
| 132 | 
            +
              * set logger level to DEBUG when verbose is enabled
         | 
| 133 | 
            +
              * coerce value of `:template_dirs` option to an Array (PR #2621)
         | 
| 134 | 
            +
              * make block roles specified using shorthand syntax additive (#2174)
         | 
| 135 | 
            +
              * allow paragraph to masquerade as open block (PR #2412)
         | 
| 136 | 
            +
              * move callouts into document catalog (PR #2394)
         | 
| 137 | 
            +
              * document ID defined in block attribute line takes precedence over ID defined inside document title line
         | 
| 138 | 
            +
              * don't look for link and window attributes on document when resolving these attributes for an image
         | 
| 139 | 
            +
              * when linkattrs is set, only parse attributes in link macro if equals is present
         | 
| 140 | 
            +
              * skip line comments in name section of manpage (#2584, PR #2585)
         | 
| 141 | 
            +
              * always activate extension registry passed to processor (PR #2379)
         | 
| 142 | 
            +
              * skip extension registry activation if no groups are registered (PR #2373)
         | 
| 143 | 
            +
              * don't apply lead styling to first paragraph if role is present (#2624, PR #2625)
         | 
| 144 | 
            +
              * raise clearer exception when extension class cannot be resolved (#2622, PR #2623)
         | 
| 145 | 
            +
              * add methods to read results from timings (#2578, PR #2580)
         | 
| 146 | 
            +
              * collapse bottom margin of last block in AsciiDoc table cell (#2568, PR #2593)
         | 
| 147 | 
            +
              * set authorcount to 0 if there are no authors (#2519, PR #2520)
         | 
| 148 | 
            +
              * validate fragment of interdoc xref that resolves to current doc (#2448, PR #2449)
         | 
| 149 | 
            +
              * put id attribute on tag around phrase instead of preceding anchor (#2445, PR #2446)
         | 
| 150 | 
            +
              * add .plist extension to XML circumfix comment family (#2430, PR #2431) (*@akosma*)
         | 
| 151 | 
            +
              * alias Document#title method to no args Document#doctitle method (#2429, PR #2432)
         | 
| 152 | 
            +
              * upgrade missing or unreadable include file to an error (#2424, PR #2426)
         | 
| 153 | 
            +
              * add compliance setting to disable natural cross references (#2405, PR #2460)
         | 
| 154 | 
            +
              * make hash in inter-document xref target optional if target has extension (#2404, PR #2406)
         | 
| 155 | 
            +
              * add CSS class to part that matches role (#2401, PR #2402)
         | 
| 156 | 
            +
              * add fit-content class to auto-width table (#2392)
         | 
| 157 | 
            +
              * automatically assign parent reference when adding node to parent (#2398, PR #2403)
         | 
| 158 | 
            +
              * leave inline anchor in section title as is if section has ID (#2243, PR #2427)
         | 
| 159 | 
            +
              * align and improve error message about invalid use of partintro between HTML5 and DocBook converters
         | 
| 160 | 
            +
              * rephrase warning when level 0 sections are found and the doctype is not book
         | 
| 161 | 
            +
              * report correct line number when duplicate bibliography anchor is found
         | 
| 162 | 
            +
              * only warn if thread_safe gem is missing when using built-in template cache
         | 
| 163 | 
            +
              * rename enumerate_section to assign_numeral; update API docs
         | 
| 164 | 
            +
              * drop deprecated compact option from CLI; remove from manpage
         | 
| 165 | 
            +
              * use more robust mechanism for lazy loading the asciimath gem
         | 
| 166 | 
            +
              * use consistent phrase to indicate the processor is automatically recovering from a problem
         | 
| 167 | 
            +
              * change Reader#skip_comment_lines to not return skipped lines
         | 
| 168 | 
            +
              * add styles to default stylesheet for display on Kindle (kf8) devices (PR #2475)
         | 
| 169 | 
            +
              * purge render method from test suite (except to verify alias)
         | 
| 170 | 
            +
             | 
| 171 | 
            +
            Documentation::
         | 
| 172 | 
            +
             | 
| 173 | 
            +
              * translate 'section-refsig' for German language (PR #2633) (*@ahus1*)
         | 
| 174 | 
            +
              * synchronize French README with English version (PR #2637) (*@flashcode*)
         | 
| 175 | 
            +
             | 
| 176 | 
            +
            Build / Infrastructure::
         | 
| 177 | 
            +
             | 
| 178 | 
            +
              * create an official logo for the project (#48) (*@mmajko*)
         | 
| 179 | 
            +
              * update Ruby versions in appveyor build matrix (PR #2388) (*@miltador*)
         | 
| 180 | 
            +
              * add mailinglist, changelog, source, and issues URI to gem spec
         | 
| 181 | 
            +
              * allow blocks and substitutions tests to be run directly
         | 
| 182 | 
            +
              * asciidoctor formula now available for Homebrew (*@zmwangx*)
         | 
| 183 | 
            +
             | 
| 184 | 
            +
            Distribution Packages::
         | 
| 185 | 
            +
             | 
| 186 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 187 | 
            +
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (asciidoctor)]
         | 
| 188 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 189 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 190 | 
            +
              * https://pkgs.alpinelinux.org/packages?name=asciidoctor[Alpine Linux (asciidoctor)]
         | 
| 191 | 
            +
              * https://software.opensuse.org/package/rubygem-asciidoctor[OpenSUSE (rubygem-asciidoctor)]
         | 
| 192 | 
            +
             | 
| 16 193 | 
             
            // tag::compact[]
         | 
| 17 194 | 
             
            == 1.5.6.2 (2018-03-20) - @mojavelinux
         | 
| 18 195 |  | 
| @@ -26,7 +203,7 @@ Improvements / Refactoring:: | |
| 26 203 | 
             
              * resolve include target correctly in browser (xmlhttprequest IO module) (#2599, #2602)
         | 
| 27 204 | 
             
              * extract method to resolve include path (allowing Asciidoctor.js to override) (#2610)
         | 
| 28 205 | 
             
              * don't expand docdir value passed to API (#2518)
         | 
| 29 | 
            -
              * check mandatory attributes when creating an image block (#2349)
         | 
| 206 | 
            +
              * check mandatory attributes when creating an image block (#2349, PR #2355) (*@mogztter*)
         | 
| 30 207 | 
             
              * drop is_ prefix from boolean methods in PathResolver (PR #2587)
         | 
| 31 208 | 
             
              * change Reader#replace_next_line to return true
         | 
| 32 209 | 
             
              * organize methods in AbstractNode
         | 
| @@ -35,14 +212,15 @@ Build / Infrastructure:: | |
| 35 212 |  | 
| 36 213 | 
             
              * clean up dependencies
         | 
| 37 214 | 
             
              * add Ruby 2.5.0 to CI build matrix (PR #2528)
         | 
| 38 | 
            -
              * update nokogiri to 1.8.0 for ruby >= 2.1 (PR #2380)
         | 
| 215 | 
            +
              * update nokogiri to 1.8.0 for ruby >= 2.1 (PR #2380) (*@miltador*)
         | 
| 39 216 |  | 
| 40 217 | 
             
            Distribution Packages::
         | 
| 41 218 |  | 
| 42 | 
            -
              *  | 
| 219 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 43 220 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 44 | 
            -
              *  | 
| 45 | 
            -
              *  | 
| 221 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 222 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 223 | 
            +
              * https://pkgs.alpinelinux.org/packages?name=asciidoctor[Alpine Linux (asciidoctor)]
         | 
| 46 224 |  | 
| 47 225 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.6.2[issues resolved] |
         | 
| 48 226 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.6.2[git tag] |
         | 
| @@ -51,6 +229,10 @@ https://github.com/asciidoctor/asciidoctor/compare/v1.5.6.1...v1.5.6.2[full diff | |
| 51 229 |  | 
| 52 230 | 
             
            == 1.5.6.1 (2017-07-23) - @mojavelinux
         | 
| 53 231 |  | 
| 232 | 
            +
            Enhancements::
         | 
| 233 | 
            +
             | 
| 234 | 
            +
              * Don't include title of special section in DocBook output if untitled option is set (e.g., dedication%untitled)
         | 
| 235 | 
            +
             | 
| 54 236 | 
             
            Bug fixes::
         | 
| 55 237 |  | 
| 56 238 | 
             
              * continue to read blocks inside a delimited block after content is skipped (PR #2318)
         | 
| @@ -91,14 +273,16 @@ Build / Infrastructure:: | |
| 91 273 |  | 
| 92 274 | 
             
            Distribution Packages::
         | 
| 93 275 |  | 
| 94 | 
            -
              *  | 
| 276 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 95 277 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 96 | 
            -
              *  | 
| 97 | 
            -
              *  | 
| 278 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 279 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 280 | 
            +
              * https://pkgs.alpinelinux.org/packages?name=asciidoctor[Alpine Linux (asciidoctor)]
         | 
| 281 | 
            +
              * https://software.opensuse.org/package/rubygem-asciidoctor[OpenSUSE (rubygem-asciidoctor)]
         | 
| 98 282 |  | 
| 99 283 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.6.1[issues resolved] |
         | 
| 100 284 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.6.1[git tag] |
         | 
| 101 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.6 | 
| 285 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.6\...v1.5.6.1[full diff]
         | 
| 102 286 |  | 
| 103 287 | 
             
            == 1.5.6 (2017-07-12) - @mojavelinux
         | 
| 104 288 |  | 
| @@ -115,7 +299,7 @@ Enhancements:: | |
| 115 299 | 
             
              * allow extension groups to be unregistered individually (#1701)
         | 
| 116 300 | 
             
              * catalog bibliography anchors and capture reftext (#560, #1562)
         | 
| 117 301 | 
             
              * automatically add bibliography style to unordered list in bibliography section (#1924)
         | 
| 118 | 
            -
              * disable startinline option when highlighting PHP if mixed option is set on source block (PR #2015) ( | 
| 302 | 
            +
              * disable startinline option when highlighting PHP if mixed option is set on source block (PR #2015) (*@ricpelo*)
         | 
| 119 303 | 
             
              * configure Slim to resolve includes in specified template dirs (#2214)
         | 
| 120 304 | 
             
              * dump manpage when -h manpage flag is passed to CLI (#2302)
         | 
| 121 305 | 
             
              * add resolves_attributes method to DSL for macros (#2122)
         | 
| @@ -143,7 +327,7 @@ Improvements:: | |
| 143 327 | 
             
              * process include directive inside text of short form preprocessor conditional (#2146)
         | 
| 144 328 | 
             
              * add support for include tags in languages that only support only circumfix comments (#1729)
         | 
| 145 329 | 
             
              * allow spaces in target of block image; target must start and end with non-space (#1943)
         | 
| 146 | 
            -
              * add warning in verbose mode if xref is not found ( | 
| 330 | 
            +
              * add warning in verbose mode if xref is not found (#2268) (*@fapdash*)
         | 
| 147 331 | 
             
              * add warning if duplicate ID is detected (#2244)
         | 
| 148 332 | 
             
              * validate that output file will not overwrite input file (#1956)
         | 
| 149 333 | 
             
              * include docfile in warning when stylesheet cannot be read (#2089)
         | 
| @@ -179,7 +363,7 @@ Improvements:: | |
| 179 363 | 
             
              * be more precise about splitting kbd characters (#1660)
         | 
| 180 364 | 
             
              * rename limit method on String to limit_bytesize (#1889)
         | 
| 181 365 | 
             
              * leverage Ruby's match? method to speed up non-capturing regexps (PR #1938)
         | 
| 182 | 
            -
              * preserve inline break in manpages ( | 
| 366 | 
            +
              * preserve inline break in manpages (*@letheed*)
         | 
| 183 367 | 
             
              * check for presence of SOURCE_DATE_EPOCH instead of value; fail if value is malformed
         | 
| 184 368 | 
             
              * add Rows#by_section method to return table sections (#2219)
         | 
| 185 369 | 
             
              * cache which template engines have been loaded to avoid unnecessary processing
         | 
| @@ -247,6 +431,7 @@ Bug fixes:: | |
| 247 431 | 
             
              * don't allow table borders to cascade to nested tables (#2151)
         | 
| 248 432 | 
             
              * escape special characters in reftext of anchor (#1694)
         | 
| 249 433 | 
             
              * sanitize content of authors meta tag in HTML output (#2112)
         | 
| 434 | 
            +
              * use correct line number in warning for invalid callout item reference (#2275)
         | 
| 250 435 | 
             
              * fix stray marks added when unescaping unconstrained passthroughs (PR #2079)
         | 
| 251 436 | 
             
              * don't confuse escaped quotes in CSV data as enclosing quotes (#2008)
         | 
| 252 437 | 
             
              * don't activate implicit header if cell in first line of table contains a blank line (#1284, #644)
         | 
| @@ -259,7 +444,7 @@ Bug fixes:: | |
| 259 444 | 
             
              * fix regression of not matching short form of custom block macro
         | 
| 260 445 | 
             
              * encode double quotes in image alt text when used in an attribute (#2061)
         | 
| 261 446 | 
             
              * encode double quote and strip XML tags in value of xreflabel attribute in DocBook converter (PR #2220)
         | 
| 262 | 
            -
              * fix typo in base64 data (PR #2094) ( | 
| 447 | 
            +
              * fix typo in base64 data (PR #2094) (*@mogztter*)
         | 
| 263 448 | 
             
              * permit pass macro to surround a multi-line attribute value with hard line breaks (#2211)
         | 
| 264 449 | 
             
              * fix sequential inline anchor macros with empty reftext (#1689)
         | 
| 265 450 | 
             
              * don't mangle compound names when document has multiple authors (#663)
         | 
| @@ -269,8 +454,8 @@ Bug fixes:: | |
| 269 454 | 
             
              * remove max-width on the callout number icon (#1895)
         | 
| 270 455 | 
             
              * eagerly add hljs class for highlight.js (#2221)
         | 
| 271 456 | 
             
              * fix SOURCE_DATE_EPOCH lookup in Opal
         | 
| 272 | 
            -
              * fix paths with file URI scheme are inevitably absolute (PR #1925) ( | 
| 273 | 
            -
              * only resolve file URLs when JavaScript IO module is xmlhttprequest (PR #1898) ( | 
| 457 | 
            +
              * fix paths with file URI scheme are inevitably absolute (PR #1925) (*@mogztter*)
         | 
| 458 | 
            +
              * only resolve file URLs when JavaScript IO module is xmlhttprequest (PR #1898) (*@mogztter*)
         | 
| 274 459 | 
             
              * fix formatting of video title in manpage converter
         | 
| 275 460 | 
             
              * don't increment line number if peek_lines overruns buffer (fixes some cases when line number is off)
         | 
| 276 461 | 
             
              * freeze extension processor instance, not class
         | 
| @@ -279,54 +464,55 @@ Bug fixes:: | |
| 279 464 |  | 
| 280 465 | 
             
            Documentation::
         | 
| 281 466 | 
             
              * enable admonition icons in README when displayed on GitHub
         | 
| 282 | 
            -
              * add German translation of chapter-label (PR #1920) ( | 
| 283 | 
            -
              * add Ukrainian translation of built-in attributes (PR #1955) ( | 
| 284 | 
            -
              * add Norwegian Nynorsk translation; updated Norwegian Bokmål translation of built-in attributes (PR #2142) ( | 
| 285 | 
            -
              * add Polish translation of built-in attributes (PR #2131) ( | 
| 286 | 
            -
              * add Romanian translation of built-in attributes (PR #2125) ( | 
| 287 | 
            -
              * fix Japanese translation of built-in attributes (PR #2116) ( | 
| 288 | 
            -
              * add Bahasa Indonesia translation of built-in labels ( | 
| 467 | 
            +
              * add German translation of chapter-label (PR #1920) (*@fapdash*)
         | 
| 468 | 
            +
              * add Ukrainian translation of built-in attributes (PR #1955) (*@hedrok*)
         | 
| 469 | 
            +
              * add Norwegian Nynorsk translation; updated Norwegian Bokmål translation of built-in attributes (PR #2142) (*@huftis*)
         | 
| 470 | 
            +
              * add Polish translation of built-in attributes (PR #2131) (*@ldziedziul*)
         | 
| 471 | 
            +
              * add Romanian translation of built-in attributes (PR #2125) (*@vitaliel*)
         | 
| 472 | 
            +
              * fix Japanese translation of built-in attributes (PR #2116) (*@haradats*)
         | 
| 473 | 
            +
              * add Bahasa Indonesia translation of built-in labels (*@triyanwn*)
         | 
| 289 474 |  | 
| 290 475 | 
             
            Build / Infrastructure::
         | 
| 291 476 | 
             
              * upgrade highlight.js to 9.12.0 (#1652)
         | 
| 292 | 
            -
              * include entire test suite in gem (PR #1952) ( | 
| 293 | 
            -
              * upgrade Slim development dependency to 3.0.x (PR #1953) ( | 
| 477 | 
            +
              * include entire test suite in gem (PR #1952) (*@voxik*)
         | 
| 478 | 
            +
              * upgrade Slim development dependency to 3.0.x (PR #1953) (*@voxik*)
         | 
| 294 479 | 
             
              * upgrade Haml development dependency to 5.0.x
         | 
| 295 480 | 
             
              * upgrade Nokogiri to 1.6.x (except on Ruby 1.8) (PR #1213)
         | 
| 296 481 | 
             
              * add Ruby 2.4 to CI test matrix (PR #1980)
         | 
| 297 482 | 
             
              * upgrade cucumber and JRuby in CI build (PR #2005)
         | 
| 298 | 
            -
              * fix reference to documentation in attributes.adoc (PR #1901) ( | 
| 483 | 
            +
              * fix reference to documentation in attributes.adoc (PR #1901) (*@stonio*)
         | 
| 299 484 | 
             
              * trap and verify all warnings when tests are run with warnings enabled
         | 
| 300 485 | 
             
              * set default task in build to test:all
         | 
| 301 486 | 
             
              * configure run-tests.sh script to run all tests
         | 
| 302 487 | 
             
              * configure feature tests to only show progress
         | 
| 303 488 | 
             
              * configure Slim in feature tests to use html as format instead of deprecated html5
         | 
| 304 489 | 
             
              * lock version of yard to fix invalid byte sequence in Ruby 1.9.3
         | 
| 305 | 
            -
              * modify rake build to trigger dependent builds (specifically, Asciidoctor.js) ( | 
| 490 | 
            +
              * modify rake build to trigger dependent builds (specifically, Asciidoctor.js) (PR #2305) (*@mogztter*)
         | 
| 306 491 |  | 
| 307 492 | 
             
            Distribution Packages::
         | 
| 308 493 |  | 
| 309 | 
            -
              *  | 
| 494 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 310 495 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 311 | 
            -
              *  | 
| 312 | 
            -
              *  | 
| 496 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 497 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 498 | 
            +
              * https://pkgs.alpinelinux.org/packages?name=asciidoctor[Alpine Linux (asciidoctor)]
         | 
| 313 499 |  | 
| 314 500 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.6[issues resolved] |
         | 
| 315 501 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.6[git tag] |
         | 
| 316 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.5 | 
| 502 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.5\...v1.5.6[full diff]
         | 
| 317 503 |  | 
| 318 504 | 
             
            == 1.5.5 (2016-10-05) - @mojavelinux
         | 
| 319 505 |  | 
| 320 506 | 
             
            Enhancements::
         | 
| 321 507 | 
             
              * Add preference to limit the maximum size of an attribute value (#1861)
         | 
| 322 | 
            -
              * Honor SOURCE_DATE_EPOCH environment variable to accomodate reproducible builds ( | 
| 508 | 
            +
              * Honor SOURCE_DATE_EPOCH environment variable to accomodate reproducible builds (#1721) (*@JojoBoulix*)
         | 
| 323 509 | 
             
              * Add reversed attribute to ordered list if reversed option is enabled (#1830)
         | 
| 324 510 | 
             
              * Add support for additional docinfo locations (e.g., :header)
         | 
| 325 511 | 
             
              * Configure default stylesheet to break monospace word if exceeds length of line; add roles to prevent breaks (#1814)
         | 
| 326 | 
            -
              * Introduce translation file for built-in labels ( | 
| 327 | 
            -
              * Provide translations for built-in labels ( | 
| 328 | 
            -
              * Translate README to Chinese ( | 
| 329 | 
            -
              * Translate README to Japanese ( | 
| 512 | 
            +
              * Introduce translation file for built-in labels (*@ciampix*)
         | 
| 513 | 
            +
              * Provide translations for built-in labels (*@JmyL* - kr, *@ciampix* - it, *@ivannov* - bg, *@maxandersen* - da, *@radcortez* - pt, *@eddumelendez* - es, *@leathersole* - jp, *@aslakknutsen* - no, *@shahryareiv* - fa, *@AlexanderZobkov* - ru, *@dongwq* - zh, *@rmpestano* - pt_BR, *@ncomet* - fr, *@lgvz* - fi, *@patoi* - hu, *@BojanStipic* - sr, *@fwilhe* - de, *@rahmanusta* - tr, *@abelsromero* - ca, *@aboullaite* - ar, *@roelvs* - nl)
         | 
| 514 | 
            +
              * Translate README to Chinese (*@diguage*)
         | 
| 515 | 
            +
              * Translate README to Japanese (*@Mizuho32*)
         | 
| 330 516 |  | 
| 331 517 | 
             
            Improvements::
         | 
| 332 518 | 
             
              * Style nested emphasized phrases properly when using default stylesheet (#1691)
         | 
| @@ -338,12 +524,12 @@ Improvements:: | |
| 338 524 | 
             
              * Enable font smoothing on Firefox on OSX (#1837)
         | 
| 339 525 | 
             
              * Support combined use of sectanchors and sectlinks in HTML5 output (#1806)
         | 
| 340 526 | 
             
              * fix API docs for find_by
         | 
| 341 | 
            -
              * Upgrade to Font Awesome 4.6.3 ( | 
| 527 | 
            +
              * Upgrade to Font Awesome 4.6.3 (#1723) (*@allenan*, *@mogztter*)
         | 
| 342 528 | 
             
              * README: add install instructions for Alpine Linux
         | 
| 343 529 | 
             
              * README: Switch yum commands to dnf in README
         | 
| 344 530 | 
             
              * README: Mention Mint as a Debian distro that packages Asciidoctor
         | 
| 345 | 
            -
              * README: Add caution advising against using gem update to update a system-managed gem ( | 
| 346 | 
            -
              * README: sync French version with English version ( | 
| 531 | 
            +
              * README: Add caution advising against using gem update to update a system-managed gem (*@oddhack*)
         | 
| 532 | 
            +
              * README: sync French version with English version (*@flashcode*)
         | 
| 347 533 | 
             
              * Add missing endline after title element when converting open block to HTML
         | 
| 348 534 | 
             
              * Move list_marker_keyword method from AbstractNode to AbstractBlock
         | 
| 349 535 | 
             
              * Rename definition list to description list internally
         | 
| @@ -366,23 +552,24 @@ Bug fixes:: | |
| 366 552 |  | 
| 367 553 | 
             
            Infrastructure::
         | 
| 368 554 | 
             
              * Build gem properly in the absense of a git workspace, make compatible with JRuby (#1779)
         | 
| 369 | 
            -
              * Run tests in CI using latest versions of Ruby, including Ruby 2.3 ( | 
| 555 | 
            +
              * Run tests in CI using latest versions of Ruby, including Ruby 2.3 (*@ferdinandrosario*)
         | 
| 370 556 |  | 
| 371 557 | 
             
            Distribution Packages::
         | 
| 372 558 |  | 
| 373 | 
            -
              *  | 
| 559 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 374 560 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 375 | 
            -
              *  | 
| 376 | 
            -
              *  | 
| 561 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 562 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 563 | 
            +
              * https://pkgs.alpinelinux.org/packages?name=asciidoctor[Alpine Linux (asciidoctor)]
         | 
| 377 564 |  | 
| 378 565 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.5[issues resolved] |
         | 
| 379 566 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.5[git tag] |
         | 
| 380 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.4 | 
| 567 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.4\...v1.5.5[full diff]
         | 
| 381 568 |  | 
| 382 569 | 
             
            == 1.5.4 (2016-01-03) - @mojavelinux
         | 
| 383 570 |  | 
| 384 571 | 
             
            Enhancements::
         | 
| 385 | 
            -
              * translate README into French ( | 
| 572 | 
            +
              * translate README into French (#1630) (*@anthonny*, *@mogztter*, *@gscheibel*, *@mgreau*)
         | 
| 386 573 | 
             
              * allow linkstyle in manpage output to be configured (#1610)
         | 
| 387 574 |  | 
| 388 575 | 
             
            Improvements::
         | 
| @@ -390,9 +577,9 @@ Improvements:: | |
| 390 577 | 
             
              * upgrade to Font Awesome 4.5.0
         | 
| 391 578 | 
             
              * disable toc if document has no sections (#1633)
         | 
| 392 579 | 
             
              * convert inline asciimath to MathML (using asciimath gem) in DocBook converter (#1622)
         | 
| 393 | 
            -
              * add attribute to control build reproducibility ( | 
| 580 | 
            +
              * add attribute to control build reproducibility (#1453) (*@bk2204*)
         | 
| 394 581 | 
             
              * recognize \file:/// as a file root in Opal browser env (#1561)
         | 
| 395 | 
            -
              * honor icon attribute on admonition block when font-based icons are enabled ( | 
| 582 | 
            +
              * honor icon attribute on admonition block when font-based icons are enabled (#1593) (*@robertpanzer*)
         | 
| 396 583 | 
             
              * resolve custom icon relative to iconsdir; add file extension if absent (#1634)
         | 
| 397 584 | 
             
              * allow asciidoctor cli to resolve library path when invoked without leading ./
         | 
| 398 585 |  | 
| @@ -408,13 +595,13 @@ Bug fixes:: | |
| 408 595 | 
             
              * don't swallow trailing line when include file is not readable (#1602)
         | 
| 409 596 | 
             
              * change xlink namespace to xl in DocBook 5 output to prevent parse error (#1597)
         | 
| 410 597 | 
             
              * make callouts globally unique within document, including AsciiDoc table cells (#1626)
         | 
| 411 | 
            -
              * initialize Slim-related attributes regardless of when Slim was loaded ( | 
| 412 | 
            -
              * differentiate literal backslash from escape sequence in manpage output ( | 
| 413 | 
            -
              * don't mistake line beginning with \. for troff macro in manpage output ( | 
| 414 | 
            -
              * escape leading dots so user content doesn't trigger troff macros in manpage output ( | 
| 415 | 
            -
              * use \c after .URL macro to remove extraneous space in manpage output ( | 
| 598 | 
            +
              * initialize Slim-related attributes regardless of when Slim was loaded (#1576) (*@terceiro*)
         | 
| 599 | 
            +
              * differentiate literal backslash from escape sequence in manpage output (#1604) (*@ds26gte*)
         | 
| 600 | 
            +
              * don't mistake line beginning with \. for troff macro in manpage output (#1589) (*@ds26gte*)
         | 
| 601 | 
            +
              * escape leading dots so user content doesn't trigger troff macros in manpage output (#1631) (*@ds26gte*)
         | 
| 602 | 
            +
              * use \c after .URL macro to remove extraneous space in manpage output (#1590) (*@ds26gte*)
         | 
| 416 603 | 
             
              * fix missing endline after .URL macro in manpage output (#1613)
         | 
| 417 | 
            -
              * properly handle spacing around .URL/.MTO macro in manpage output ( | 
| 604 | 
            +
              * properly handle spacing around .URL/.MTO macro in manpage output (#1641) (*@ds26gte*)
         | 
| 418 605 | 
             
              * don't swallow doctitle attribute followed by block title (#1587)
         | 
| 419 606 | 
             
              * change strategy for splitting names of author; fixes bug in Opal/Asciidoctor.js
         | 
| 420 607 | 
             
              * don't fail if library is loaded more than once
         | 
| @@ -429,36 +616,36 @@ Infrastructure:: | |
| 429 616 |  | 
| 430 617 | 
             
            Distribution Packages::
         | 
| 431 618 |  | 
| 432 | 
            -
              *  | 
| 619 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 433 620 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 434 | 
            -
              *  | 
| 435 | 
            -
              *  | 
| 621 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 622 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 436 623 |  | 
| 437 624 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.4[issues resolved] |
         | 
| 438 625 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.4[git tag] |
         | 
| 439 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.3 | 
| 626 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.3\...v1.5.4[full diff]
         | 
| 440 627 |  | 
| 441 628 | 
             
            == 1.5.3 (2015-10-31) - @mojavelinux
         | 
| 442 629 |  | 
| 443 630 | 
             
            Enhancements::
         | 
| 444 631 | 
             
              * add support for interactive & inline SVGs (#1301, #1224)
         | 
| 445 | 
            -
              * add built-in manpage backend ( | 
| 446 | 
            -
              * create Mallard backend; asciidoctor/asciidoctor-mallard ( | 
| 447 | 
            -
              * add AsciiMath to MathML converter to support AsciiMath in DocBook converter ( | 
| 632 | 
            +
              * add built-in manpage backend (#651) (*@davidgamba*)
         | 
| 633 | 
            +
              * create Mallard backend; asciidoctor/asciidoctor-mallard (#425) (*@bk2204*)
         | 
| 634 | 
            +
              * add AsciiMath to MathML converter to support AsciiMath in DocBook converter (#954) (*@pepijnve*)
         | 
| 448 635 | 
             
              * allow text of selected lines to be highlighted in source block by Pygments or CodeRay (#1429)
         | 
| 449 636 | 
             
              * use value of `docinfo` attribute to control docinfo behavior (#1510)
         | 
| 450 | 
            -
              * add `docinfosubs` attribute to control which substitutions are performed on docinfo files ( | 
| 451 | 
            -
              * drop ability to specify multiple attributes with a single `-a` flag when using the CLI ( | 
| 452 | 
            -
              * make subtitle separator chars for document title configurable ( | 
| 637 | 
            +
              * add `docinfosubs` attribute to control which substitutions are performed on docinfo files (#405) (*@mogztter*)
         | 
| 638 | 
            +
              * drop ability to specify multiple attributes with a single `-a` flag when using the CLI (#405) (*@mogztter*)
         | 
| 639 | 
            +
              * make subtitle separator chars for document title configurable (#1350) (*@rmannibucau*)
         | 
| 453 640 | 
             
              * make XrefInlineRx regexp more permissive (Mathieu Boespflug) (#844)
         | 
| 454 641 |  | 
| 455 642 | 
             
            Improvements::
         | 
| 456 | 
            -
              * load JavaScript and CSS at bottom of HTML document ( | 
| 457 | 
            -
              * list available backends in help text ( | 
| 643 | 
            +
              * load JavaScript and CSS at bottom of HTML document (#1238) (*@mogztter*)
         | 
| 644 | 
            +
              * list available backends in help text (#1271) (*@plaindocs*)
         | 
| 458 645 | 
             
              * properly expand tabs in literal text (#1170, #841)
         | 
| 459 | 
            -
              * add `source-indent` as document attribute ( | 
| 646 | 
            +
              * add `source-indent` as document attribute (#1169) (*@mogztter*)
         | 
| 460 647 | 
             
              * upgrade MathJax to 2.5.3 (#1329)
         | 
| 461 | 
            -
              * upgrade Font Awesome to 4.4.0 ( | 
| 648 | 
            +
              * upgrade Font Awesome to 4.4.0 (#1465) (*@mogztter*)
         | 
| 462 649 | 
             
              * upgrade highlight.js to 8.6 (now 8.9.1) (#1390)
         | 
| 463 650 | 
             
              * don't abort if syntax highlighter isn't available (#1253)
         | 
| 464 651 | 
             
              * insert docinfo footer below footer div (#1503)
         | 
| @@ -467,10 +654,10 @@ Improvements:: | |
| 467 654 | 
             
              * restore attributes to header attributes after parse (#1255)
         | 
| 468 655 | 
             
              * allow docdate and doctime to be overridden (#1495)
         | 
| 469 656 | 
             
              * add CSS class `.center` for center block alignment (#1456)
         | 
| 470 | 
            -
              * recognize U+2022 (bullet) as alternative marker for unordered lists ( | 
| 657 | 
            +
              * recognize U+2022 (bullet) as alternative marker for unordered lists (#1177) (*@mogztter*)
         | 
| 471 658 | 
             
              * allow videos to work for local files by prepending asset-uri-scheme (Chris) (#1320)
         | 
| 472 659 | 
             
              * always assign playlist param when loop option is enabled for YouTube video
         | 
| 473 | 
            -
              * parse isolated version in revision line ( | 
| 660 | 
            +
              * parse isolated version in revision line (#790) (*@bk2204*)
         | 
| 474 661 | 
             
              * autoload Tilt when template converter is instantiated (#1313)
         | 
| 475 662 | 
             
              * don't overwrite existing id entry in references table (#1256)
         | 
| 476 663 | 
             
              * use outfilesuffix attribute defined in header when resolving outfile (#1412)
         | 
| @@ -481,15 +668,15 @@ Improvements:: | |
| 481 668 | 
             
              * load Droid Sans Mono 700 in default stylesheet
         | 
| 482 669 | 
             
              * set line height of table cells used for syntax highlighting
         | 
| 483 670 | 
             
              * set font-family of kbd; refine styling (#1423)
         | 
| 484 | 
            -
              * extract condition into `quote_lines?` method ( | 
| 485 | 
            -
              * extract inline code into `read_paragraph` method ( | 
| 671 | 
            +
              * extract condition into `quote_lines?` method (*@mogztter*)
         | 
| 672 | 
            +
              * extract inline code into `read_paragraph` method (*@mogztter*)
         | 
| 486 673 | 
             
              * parent of block in ListItem should be ListItem (#1359)
         | 
| 487 674 | 
             
              * add helper methods to List and ListItem (#1551)
         | 
| 488 | 
            -
              * add method `AbstractNode#add_role` and `AbstractNode#remove_role` ( | 
| 675 | 
            +
              * add method `AbstractNode#add_role` and `AbstractNode#remove_role` (#1366) (*@robertpanzer*)
         | 
| 489 676 | 
             
              * introduce helper methods for sniffing URIs (#1422)
         | 
| 490 677 | 
             
              * add helper to calculate basename without file extension
         | 
| 491 | 
            -
              * document `-I` and `-r` options in the manual page ( | 
| 492 | 
            -
              * fix `+--help+` output text for `-I` ( | 
| 678 | 
            +
              * document `-I` and `-r` options in the manual page (*@bk2204*)
         | 
| 679 | 
            +
              * fix `+--help+` output text for `-I` (*@bk2204*)
         | 
| 493 680 | 
             
              * don't require open-uri-cached if already loaded
         | 
| 494 681 | 
             
              * do not attempt to scan pattern of non-existent directory in template converter
         | 
| 495 682 | 
             
              * prevent CodeRay from bolding every 10th line number
         | 
| @@ -504,7 +691,7 @@ Compliance:: | |
| 504 691 |  | 
| 505 692 | 
             
            Bug fixes::
         | 
| 506 693 | 
             
              * don't truncate exception stack in `Asciidoctor.load` (#1248)
         | 
| 507 | 
            -
              * don't fail to save cause of Java exception ( | 
| 694 | 
            +
              * don't fail to save cause of Java exception (#1458) (*@robertpanzer*)
         | 
| 508 695 | 
             
              * fix precision error in timings report (#1342)
         | 
| 509 696 | 
             
              * resolve regexp for inline macro lazily (#1336)
         | 
| 510 697 | 
             
              * block argument to `find_by` should filter results (#1393)
         | 
| @@ -521,7 +708,7 @@ Bug fixes:: | |
| 521 708 | 
             
              * fix invalid color value in default CodeRay theme
         | 
| 522 709 | 
             
              * built-in writer no longer fails if output is nil (#1544)
         | 
| 523 710 | 
             
              * custom template engine options should take precedence
         | 
| 524 | 
            -
              * fallback to require with a non-relative path to support Debian package ( | 
| 711 | 
            +
              * fallback to require with a non-relative path to support Debian package (*@mogztter*)
         | 
| 525 712 | 
             
              * pass opts to recursive invocations of `PathResolver#system_path`
         | 
| 526 713 | 
             
              * fix and test external links in docbook backend
         | 
| 527 714 | 
             
              * use format symbol `:html` instead of `:html5` for Slim to fix warnings
         | 
| @@ -537,28 +724,28 @@ Infrastructure:: | |
| 537 724 |  | 
| 538 725 | 
             
            Distribution Packages::
         | 
| 539 726 |  | 
| 540 | 
            -
              *  | 
| 727 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 541 728 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 542 | 
            -
              *  | 
| 543 | 
            -
              *  | 
| 729 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 730 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 544 731 |  | 
| 545 732 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.3[issues resolved] |
         | 
| 546 733 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.3[git tag] |
         | 
| 547 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.2 | 
| 734 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.2\...v1.5.3[full diff]
         | 
| 548 735 |  | 
| 549 736 | 
             
            == 1.5.2 (2014-11-27) - @mojavelinux
         | 
| 550 737 |  | 
| 551 738 | 
             
            Enhancements::
         | 
| 552 739 |  | 
| 553 | 
            -
              * add docinfo extension ( | 
| 554 | 
            -
              * allow docinfo to be in separate directory from content, specified by `docinfodir` attribute ( | 
| 555 | 
            -
              * enable TeX equation auto-numbering if `eqnums` attribute is set ( | 
| 740 | 
            +
              * add docinfo extension (#1162) (*@mogztter*)
         | 
| 741 | 
            +
              * allow docinfo to be in separate directory from content, specified by `docinfodir` attribute (#511) (*@mogztter*)
         | 
| 742 | 
            +
              * enable TeX equation auto-numbering if `eqnums` attribute is set (#1110) (*@jxxcarlson*)
         | 
| 556 743 |  | 
| 557 744 | 
             
            Improvements::
         | 
| 558 745 |  | 
| 559 746 | 
             
              * recognize `--` as valid line comment for callout numbers; make line comment configurable (#1068)
         | 
| 560 747 | 
             
              * upgrade highlight.js to version 8.4 (#1216)
         | 
| 561 | 
            -
              * upgrade Font Awesome to version 4.2.0 ( | 
| 748 | 
            +
              * upgrade Font Awesome to version 4.2.0 (#1201) (*@clojens*)
         | 
| 562 749 | 
             
              * define JAVASCRIPT_PLATFORM constant to simplify conditional logic in the JavaScript environment (#897)
         | 
| 563 750 | 
             
              * provide access to destination directory, outfile and outdir via Document object (#1203)
         | 
| 564 751 | 
             
              * print encoding information in version report produced by `asciidoctor -v` (#1210)
         | 
| @@ -569,13 +756,13 @@ Improvements:: | |
| 569 756 | 
             
              * make start number for unique id generation configurable (#1148)
         | 
| 570 757 | 
             
              * normalize and force UTF-8 encoding of docinfo content (#831)
         | 
| 571 758 | 
             
              * allow subs and default_subs to be specified in Block constructor (#749)
         | 
| 572 | 
            -
              * enhance error message when reading binary input files ( | 
| 759 | 
            +
              * enhance error message when reading binary input files (#1158) (*@mogztter*)
         | 
| 573 760 | 
             
              * add `append` method as alias to `<<` method on AbstractBlock (#1085)
         | 
| 574 761 | 
             
              * assign value of `preface-title` as title of preface node (#1090)
         | 
| 575 762 | 
             
              * fix spacing around checkbox in checklist (#1138)
         | 
| 576 | 
            -
              * automatically load Slim's include plugin when using slim templates ( | 
| 577 | 
            -
              * mixin Slim helpers into execution scope of slim templates ( | 
| 578 | 
            -
              * improve DocBook output for manpage doctype ( | 
| 763 | 
            +
              * automatically load Slim's include plugin when using slim templates (#1151) (*@jirutka*)
         | 
| 764 | 
            +
              * mixin Slim helpers into execution scope of slim templates (#1143) (*@jirutka*)
         | 
| 765 | 
            +
              * improve DocBook output for manpage doctype (#1134, #1142) (*@bk2204*)
         | 
| 579 766 |  | 
| 580 767 | 
             
            Compliance::
         | 
| 581 768 |  | 
| @@ -591,14 +778,14 @@ Bug fixes:: | |
| 591 778 |  | 
| 592 779 | 
             
            Distribution Packages::
         | 
| 593 780 |  | 
| 594 | 
            -
              *  | 
| 781 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 595 782 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 596 | 
            -
              *  | 
| 597 | 
            -
              *  | 
| 783 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 784 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 598 785 |  | 
| 599 786 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.2[issues resolved] |
         | 
| 600 787 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.2[git tag] |
         | 
| 601 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.1 | 
| 788 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.1\...v1.5.2[full diff]
         | 
| 602 789 |  | 
| 603 790 | 
             
            == 1.5.1 (2014-09-29) - @mojavelinux
         | 
| 604 791 |  | 
| @@ -622,14 +809,14 @@ Improvements:: | |
| 622 809 |  | 
| 623 810 | 
             
            Distribution Packages::
         | 
| 624 811 |  | 
| 625 | 
            -
              *  | 
| 812 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 626 813 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 627 | 
            -
              *  | 
| 628 | 
            -
              *  | 
| 814 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 815 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 629 816 |  | 
| 630 817 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?q=milestone%3Av1.5.1[issues resolved] |
         | 
| 631 818 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.1[git tag] |
         | 
| 632 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.0 | 
| 819 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v1.5.0\...v1.5.1[full diff]
         | 
| 633 820 |  | 
| 634 821 | 
             
            == 1.5.0 (2014-08-12) - @mojavelinux
         | 
| 635 822 |  | 
| @@ -651,10 +838,10 @@ Enhancements:: | |
| 651 838 | 
             
              * {star} switch to open source fonts (Open Sans, Noto Serif and Droid Sans Mono) in default stylesheet, major refinements to theme (#879)
         | 
| 652 839 | 
             
              * {star} embed remote images when data-uri and allow-uri-read attributes are set (#612)
         | 
| 653 840 | 
             
              * {star} support leveloffset on include directive and honor relative leveloffset values (#530)
         | 
| 654 | 
            -
              * {star} switch default docbook backend to docbook5 ( | 
| 841 | 
            +
              * {star} switch default docbook backend to docbook5 (#554) (*@bk2204*)
         | 
| 655 842 | 
             
              * {star} added hide-uri-scheme attribute to hide uri scheme in automatic links (#800)
         | 
| 656 843 | 
             
              * {star} allow substitutions to be incrementally added & removed (#522)
         | 
| 657 | 
            -
              * {star} add compatibility with Opal, add shim compat library, use compatibility regexp, require libraries properly ( | 
| 844 | 
            +
              * {star} add compatibility with Opal, add shim compat library, use compatibility regexp, require libraries properly (#679, #836, #846) (*@mogztter*)
         | 
| 658 845 | 
             
              * {star} output XHTML when backend is xhtml or xhtml5 (#494)
         | 
| 659 846 | 
             
              * {star} add shorthand subs and specialchars as an alias for specialcharacters (#579)
         | 
| 660 847 | 
             
              * {star} deprecate toc2 attribute in favor of position and placement values on toc attribute (e.g., toc=left) (#706)
         | 
| @@ -677,9 +864,9 @@ Improvements:: | |
| 677 864 |  | 
| 678 865 | 
             
              * {star} don't select lines that contain a tag directive when including tagged lines, make tag regexp more strict (#1027)
         | 
| 679 866 | 
             
              * {star} use https scheme for assets by default
         | 
| 680 | 
            -
              * {star} upgrade to Font Awesome 4.1 ( | 
| 681 | 
            -
              * {star} improve print styles, add print styles for book doctype ( | 
| 682 | 
            -
              * {star} add proper grid and frame styles for tables ( | 
| 867 | 
            +
              * {star} upgrade to Font Awesome 4.1 (#752) (*@mogztter*)
         | 
| 868 | 
            +
              * {star} improve print styles, add print styles for book doctype (#997, #952) (*@leif81*)
         | 
| 869 | 
            +
              * {star} add proper grid and frame styles for tables (#569) (*@leif81*)
         | 
| 683 870 | 
             
              * {star} use glyphs for checkboxes when not using font icons (#878)
         | 
| 684 871 | 
             
              * {star} prefer source-language attribute over language attribute for defining default source language (#888)
         | 
| 685 872 | 
             
              * {star} pass document as first argument to process method on Preprocessor
         | 
| @@ -692,15 +879,15 @@ Improvements:: | |
| 692 879 | 
             
              * constrain subscript & superscript markup (#564, #936)
         | 
| 693 880 | 
             
              * match cell specs when cell separator is customized (#985)
         | 
| 694 881 | 
             
              * use stylesheet to set default table width (#975)
         | 
| 695 | 
            -
              * display nested elements correctly in toc ( | 
| 696 | 
            -
              * add support for id attribute on links ( | 
| 697 | 
            -
              * add support for title attribute on links ( | 
| 698 | 
            -
              * add -t flag to cli to control output of timing information ( | 
| 882 | 
            +
              * display nested elements correctly in toc (#967) (*@kenfinnigan*)
         | 
| 883 | 
            +
              * add support for id attribute on links (#935) (*@mogztter*)
         | 
| 884 | 
            +
              * add support for title attribute on links (*@aslakknutsen*)
         | 
| 885 | 
            +
              * add -t flag to cli to control output of timing information (#909) (*@mogztter*)
         | 
| 699 886 | 
             
              * rewrite converter API (#778)
         | 
| 700 887 | 
             
              * rewrite extensions to support extension instances for AsciidoctorJ (#804)
         | 
| 701 888 | 
             
              * integrate thread_safe gem (#638)
         | 
| 702 889 | 
             
              * allow inline macro extensions that define a custom regexp to be matched (#792)
         | 
| 703 | 
            -
              * make Reader#push_include work with default file, path and dir ( | 
| 890 | 
            +
              * make Reader#push_include work with default file, path and dir (#743) (*@bk2204*)
         | 
| 704 891 | 
             
              * honor custom outfilesuffix and introduce relfileprefix (#801)
         | 
| 705 892 | 
             
              * add author and copyright to meta in HTML5 backend (#838)
         | 
| 706 893 | 
             
              * output attribution in front of citetitle for quote and verse blocks
         | 
| @@ -712,7 +899,7 @@ Improvements:: | |
| 712 899 | 
             
              * remove trailing endlines from source data (#727)
         | 
| 713 900 | 
             
              * add flag to cli to suppress warnings (#557)
         | 
| 714 901 | 
             
              * emit warning if tag(s) not found in include file (#639)
         | 
| 715 | 
            -
              * use <th> element for vertical table headers instead of header class ( | 
| 902 | 
            +
              * use <th> element for vertical table headers instead of header class (#738) (*@davidgamba*)
         | 
| 716 903 | 
             
              * share select references between AsciiDoc-style cell & main document (#729)
         | 
| 717 904 | 
             
              * number chapters sequentially, always (#685)
         | 
| 718 905 | 
             
              * add vbar attribute, make brvbar resolve properly (#643)
         | 
| @@ -720,20 +907,20 @@ Improvements:: | |
| 720 907 | 
             
              * enable sidebar toc for small screens (#628)
         | 
| 721 908 | 
             
              * add square brackets around button in HTML output (#631)
         | 
| 722 909 | 
             
              * make language hover text work for all languages in listing block
         | 
| 723 | 
            -
              * set background color on toc2 to cover scrolling content ( | 
| 910 | 
            +
              * set background color on toc2 to cover scrolling content (*@neher*)
         | 
| 724 911 | 
             
              * make document parsing a discrete step, make Reader accessible as property on Document
         | 
| 725 912 | 
             
              * allow custom converter to set backend info such as outfilesuffix and htmlsyntax
         | 
| 726 | 
            -
              * report an informative error message when a converter cannot be resolved ( | 
| 913 | 
            +
              * report an informative error message when a converter cannot be resolved (*@mogztter*)
         | 
| 727 914 | 
             
              * add conum class to b element when icons are disabled, make conum CSS selector more specific
         | 
| 728 | 
            -
              * expose Document object to extension point IncludeProcessor ( | 
| 915 | 
            +
              * expose Document object to extension point IncludeProcessor (*@aslakknutsen*)
         | 
| 729 916 | 
             
              * style audioblock title, simplify rules for block titles
         | 
| 730 917 | 
             
              * alias :name_attributes to :positional_attributes in extension DSL
         | 
| 731 | 
            -
              * upgrade to highlight.js 7.4 (and later 8.0) ( | 
| 918 | 
            +
              * upgrade to highlight.js 7.4 (and later 8.0) (#756) (*@mogztter*)
         | 
| 732 919 |  | 
| 733 920 | 
             
            Compliance::
         | 
| 734 921 |  | 
| 735 922 | 
             
              * only include xmlns in docbook45 backend if xmlns attribute is specified (#929)
         | 
| 736 | 
            -
              * add xmlns attribute for xhtml output ( | 
| 923 | 
            +
              * add xmlns attribute for xhtml output (*@bk2204*)
         | 
| 737 924 | 
             
              * warn if table without a body is converted to DocBook (#961)
         | 
| 738 925 | 
             
              * wrap <para> around admonition inside example block in DocBook 4.5 (#931)
         | 
| 739 926 | 
             
              * use <informalfigure> if block image doesn't have a title (#927)
         | 
| @@ -742,20 +929,20 @@ Compliance:: | |
| 742 929 | 
             
              * add compliance setting to control use of shorthand property syntax (#789)
         | 
| 743 930 | 
             
              * wrap top-level content inside preamble in DocBook backend when doctype is book (#971)
         | 
| 744 931 | 
             
              * escape special chars in image alt text (#972)
         | 
| 745 | 
            -
              * set starting number in ordered list for docbook ( | 
| 932 | 
            +
              * set starting number in ordered list for docbook (#925) (*@megathaum*)
         | 
| 746 933 | 
             
              * match word characters in regular expressions as defined by Unicode (#892)
         | 
| 747 934 | 
             
              * put source language class names on child code element of pre element (#921)
         | 
| 748 935 | 
             
              * ignore case of attribute in conditional directives (#903)
         | 
| 749 936 | 
             
              * allow attribute entry to reset / reseed counter (#870)
         | 
| 750 937 | 
             
              * allow doctype to be set in AsciiDoc table cell (#863)
         | 
| 751 | 
            -
              * match URL macro following entity ( | 
| 938 | 
            +
              * match URL macro following entity (#819) (*@jmbruel*)
         | 
| 752 939 | 
             
              * handle BOM when normalizing source (#824)
         | 
| 753 940 | 
             
              * don't output revhistory if revdate is not set (#802)
         | 
| 754 941 | 
             
              * perform normal subs on verse content (#799)
         | 
| 755 942 | 
             
              * automatically wrap part intro content in partintro block, emit warning if part is invalid (#768)
         | 
| 756 943 | 
             
              * force encoding of docinfo content to UTF-8 (#773)
         | 
| 757 944 | 
             
              * add scaling & alignment attributes to block image in DocBook backend (#763)
         | 
| 758 | 
            -
              * add support for  | 
| 945 | 
            +
              * add support for \anchor:<id>[<reftext>] macro (#531)
         | 
| 759 946 | 
             
              * substitute anchor and xref macros in footnotes (#676)
         | 
| 760 947 | 
             
              * remove all string mutation operations for compatibility with Opal (#735)
         | 
| 761 948 | 
             
              * honor reftext defined in embedded section title anchor (#697)
         | 
| @@ -789,18 +976,18 @@ Bug Fixes:: | |
| 789 976 | 
             
              * fixed broken passthroughs caused by source highlighting (#720)
         | 
| 790 977 | 
             
              * copy custom stylesheet if linkcss is set (#300)
         | 
| 791 978 | 
             
              * honor list continuations for indented, nested list items (#664)
         | 
| 792 | 
            -
              * fix syntax errors in converters ( | 
| 979 | 
            +
              * fix syntax errors in converters (*@jljouannic*)
         | 
| 793 980 | 
             
              * fix iconfont-remote setting
         | 
| 794 | 
            -
              * fix syntax error (target -> node.target) in Docbook 5 converter ( | 
| 981 | 
            +
              * fix syntax error (target -> node.target) in Docbook 5 converter (*@jf647*)
         | 
| 795 982 | 
             
              * output and style HTML for toc macro correctly
         | 
| 796 983 |  | 
| 797 984 | 
             
            Infrastructure::
         | 
| 798 985 |  | 
| 799 986 | 
             
              * add Ruby 2.1 to list of supported platforms
         | 
| 800 987 | 
             
              * reenable rbx in Travis build
         | 
| 801 | 
            -
              * switch tests to minitest ( | 
| 802 | 
            -
              * update RPM for Fedora Rawhide ( | 
| 803 | 
            -
              * refactor unit tests so they work in RubyMine ( | 
| 988 | 
            +
              * switch tests to minitest (*@ktdreyer*)
         | 
| 989 | 
            +
              * update RPM for Fedora Rawhide (*@ktdreyer*)
         | 
| 990 | 
            +
              * refactor unit tests so they work in RubyMine (*@cmoulliard*)
         | 
| 804 991 | 
             
              * add preliminary benchmark files to repository (#1021)
         | 
| 805 992 | 
             
              * clean out old fixtures from test suite (#960)
         | 
| 806 993 | 
             
              * add initial Cucumber test infrastructure (#731)
         | 
| @@ -808,18 +995,18 @@ Infrastructure:: | |
| 808 995 | 
             
              * build gemspec files using git ls-tree (#653)
         | 
| 809 996 | 
             
              * use in-process web server for URI tests
         | 
| 810 997 | 
             
              * update manpage to reflect updates in 1.5.0
         | 
| 811 | 
            -
              * rework README ( | 
| 998 | 
            +
              * rework README (#651) (*@mogztter*)
         | 
| 812 999 |  | 
| 813 1000 | 
             
            Distribution Packages::
         | 
| 814 1001 |  | 
| 815 | 
            -
              *  | 
| 1002 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 816 1003 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 817 | 
            -
              *  | 
| 818 | 
            -
              *  | 
| 1004 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 1005 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 819 1006 |  | 
| 820 1007 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=8&state=closed[issues resolved] |
         | 
| 821 1008 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v1.5.0[git tag] |
         | 
| 822 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.4 | 
| 1009 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.4\...v1.5.0[full diff]
         | 
| 823 1010 |  | 
| 824 1011 | 
             
            == 0.1.4 (2013-09-05) - @mojavelinux
         | 
| 825 1012 |  | 
| @@ -854,11 +1041,11 @@ Enhancements:: | |
| 854 1041 | 
             
              * ignore front matter used by static site generators if skip-front-matter attribute is set (#502)
         | 
| 855 1042 | 
             
              * sanitize contents of HTML title element in html5 backend (#504)
         | 
| 856 1043 | 
             
              * support toc position for toc2 (#467)
         | 
| 857 | 
            -
              * cli accepts multiple files as input ( | 
| 1044 | 
            +
              * cli accepts multiple files as input (#227) (*@lordofthejars*)
         | 
| 858 1045 | 
             
              * added Markdown-style horizontal rules and pass Markdown tests (#455)
         | 
| 859 1046 | 
             
              * added float clearing classes (.clearfix, .float-group) (#602)
         | 
| 860 1047 | 
             
              * don't disable syntax highlighting when explicit subs is used on listing block
         | 
| 861 | 
            -
              * asciidoctor package now available in Debian Sid and Ubuntu Saucy ( | 
| 1048 | 
            +
              * asciidoctor package now available in Debian Sid and Ubuntu Saucy (#216) (*@avtobiff*)
         | 
| 862 1049 |  | 
| 863 1050 | 
             
            Compliance::
         | 
| 864 1051 |  | 
| @@ -917,7 +1104,7 @@ Improvements:: | |
| 917 1104 | 
             
              * output multiple authors in HTML backend (#399)
         | 
| 918 1105 | 
             
              * allow multiple template directories to be specified, document in usage and manpage (#437)
         | 
| 919 1106 | 
             
              * added option to cli to specify template engine (#406)
         | 
| 920 | 
            -
              * added support for external video hosting services in video block macro ( | 
| 1107 | 
            +
              * added support for external video hosting services in video block macro (#587) (*@xcoulon*)
         | 
| 921 1108 | 
             
              * strip leading separator(s) on section id if idprefix is blank (#551)
         | 
| 922 1109 | 
             
              * customized styling of toc placed inside body content (#507)
         | 
| 923 1110 | 
             
              * consolidate toc attribute so toc with or without toc-position can make sidebar toc (#618)
         | 
| @@ -946,14 +1133,14 @@ Improvements:: | |
| 946 1133 |  | 
| 947 1134 | 
             
            Distribution Packages::
         | 
| 948 1135 |  | 
| 949 | 
            -
              *  | 
| 1136 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 950 1137 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 951 | 
            -
              *  | 
| 952 | 
            -
              *  | 
| 1138 | 
            +
              * https://packages.debian.org/sid/asciidoctor[Debian (asciidoctor)]
         | 
| 1139 | 
            +
              * https://packages.ubuntu.com/search?keywords=asciidoctor[Ubuntu (asciidoctor)]
         | 
| 953 1140 |  | 
| 954 1141 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=7&state=closed[issues resolved] |
         | 
| 955 1142 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v0.1.4[git tag] |
         | 
| 956 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.3 | 
| 1143 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.3\...v0.1.4[full diff]
         | 
| 957 1144 |  | 
| 958 1145 | 
             
            == 0.1.3 (2013-05-30) - @mojavelinux
         | 
| 959 1146 |  | 
| @@ -970,8 +1157,8 @@ Enhancements:: | |
| 970 1157 | 
             
              * support Markdown-style quote blocks
         | 
| 971 1158 | 
             
              * added section level 5 (maps to h6 element in the html5 backend) (#334)
         | 
| 972 1159 | 
             
              * added btn inline macro (#259)
         | 
| 973 | 
            -
              * added menu inline menu to identify a menu selection ( | 
| 974 | 
            -
              * added kbd inline macro to identify a key or key combination ( | 
| 1160 | 
            +
              * added menu inline menu to identify a menu selection (#173) (*@bleathem*)
         | 
| 1161 | 
            +
              * added kbd inline macro to identify a key or key combination (#172) (*@bleathem*)
         | 
| 975 1162 | 
             
              * support alternative quote forms (#196)
         | 
| 976 1163 | 
             
              * added indent attribute to verbatim blocks (#365)
         | 
| 977 1164 | 
             
              * added prettify source-highlighter (#202)
         | 
| @@ -998,7 +1185,7 @@ Compliance:: | |
| 998 1185 | 
             
              * assign caption even if no title (#321)
         | 
| 999 1186 | 
             
              * horizontal dlist layout in docbook backend (#298)
         | 
| 1000 1187 | 
             
              * set doctitle attribute (#337)
         | 
| 1001 | 
            -
              * allow any backend to be specified in cli ( | 
| 1188 | 
            +
              * allow any backend to be specified in cli (#320) (*@lightguard*)
         | 
| 1002 1189 | 
             
              * support for abstract and partintro (#297)
         | 
| 1003 1190 |  | 
| 1004 1191 | 
             
            Bug Fixes::
         | 
| @@ -1012,17 +1199,17 @@ Bug Fixes:: | |
| 1012 1199 | 
             
            Improvements::
         | 
| 1013 1200 |  | 
| 1014 1201 | 
             
              * added tests for all special sections (#80)
         | 
| 1015 | 
            -
              * added test for attributes defined as string or string array ( | 
| 1202 | 
            +
              * added test for attributes defined as string or string array (#291) (*@lightguard*)
         | 
| 1016 1203 |  | 
| 1017 1204 | 
             
            Distribution Packages::
         | 
| 1018 1205 |  | 
| 1019 | 
            -
              *  | 
| 1206 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 1020 1207 | 
             
              * https://apps.fedoraproject.org/packages/rubygem-asciidoctor[Fedora (rubygem-asciidoctor)]
         | 
| 1021 1208 |  | 
| 1022 1209 | 
             
            http://asciidoctor.org/news/2013/05/31/asciidoctor-0-1-3-released[release notes] |
         | 
| 1023 1210 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=4&state=closed[issues resolved] |
         | 
| 1024 1211 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v0.1.3[git tag] |
         | 
| 1025 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.2 | 
| 1212 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.2\...v0.1.3[full diff]
         | 
| 1026 1213 |  | 
| 1027 1214 | 
             
            == 0.1.2 (2013-04-25) - @mojavelinux
         | 
| 1028 1215 |  | 
| @@ -1072,12 +1259,12 @@ Bug Fixes:: | |
| 1072 1259 |  | 
| 1073 1260 | 
             
            Distribution Packages::
         | 
| 1074 1261 |  | 
| 1075 | 
            -
              *  | 
| 1262 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 1076 1263 |  | 
| 1077 1264 | 
             
            http://asciidoctor.org/news/2013/04/25/asciidoctor-0-1-2-released[release notes] |
         | 
| 1078 1265 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=3&state=closed[issues resolved] |
         | 
| 1079 1266 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v0.1.2[git tag] |
         | 
| 1080 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.1 | 
| 1267 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.1\...v0.1.2[full diff]
         | 
| 1081 1268 |  | 
| 1082 1269 | 
             
            == 0.1.1 (2013-02-26) - @erebor
         | 
| 1083 1270 |  | 
| @@ -1128,11 +1315,11 @@ Improvements:: | |
| 1128 1315 |  | 
| 1129 1316 | 
             
            Distribution Packages::
         | 
| 1130 1317 |  | 
| 1131 | 
            -
              *  | 
| 1318 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 1132 1319 |  | 
| 1133 1320 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=1&state=closed[issues resolved] |
         | 
| 1134 1321 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v0.1.1[git tag] |
         | 
| 1135 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.0 | 
| 1322 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.1.0\...v0.1.1[full diff]
         | 
| 1136 1323 |  | 
| 1137 1324 | 
             
            == 0.1.0 (2013-02-04) - @erebor
         | 
| 1138 1325 |  | 
| @@ -1180,11 +1367,11 @@ Improvements:: | |
| 1180 1367 |  | 
| 1181 1368 | 
             
            Distribution Packages::
         | 
| 1182 1369 |  | 
| 1183 | 
            -
              *  | 
| 1370 | 
            +
              * https://rubygems.org/gems/asciidoctor[RubyGem (asciidoctor)]
         | 
| 1184 1371 |  | 
| 1185 1372 | 
             
            https://github.com/asciidoctor/asciidoctor/issues?milestone=12&state=closed[issues resolved] |
         | 
| 1186 1373 | 
             
            https://github.com/asciidoctor/asciidoctor/releases/tag/v0.1.0[git tag] |
         | 
| 1187 | 
            -
            https://github.com/asciidoctor/asciidoctor/compare/v0.0.9 | 
| 1374 | 
            +
            https://github.com/asciidoctor/asciidoctor/compare/v0.0.9\...v0.1.0[full diff]
         | 
| 1188 1375 |  | 
| 1189 1376 | 
             
            == Older releases (pre-0.0.1)
         | 
| 1190 1377 |  |