| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: ruby4.0-rubygem-asciidoctor | Distribution: openSUSE Tumbleweed |
| Version: 2.0.23 | Vendor: openSUSE |
| Release: 2.1 | Build date: Wed Jul 1 02:49:05 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 1334458 | Source RPM: rubygem-asciidoctor-2.0.23-2.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://asciidoctor.org | |
| Summary: An implementation of the AsciiDoc text processor and publishing | |
A fast, open source text processor and publishing toolchain for converting AsciiDoc content to HTML 5, DocBook 5, and other formats.
MIT
* Wed Jul 01 2026 Steven Baker <steven.baker@suse.com>
- Regenerate spec file to drop update-alternatives dependency
* Fri Jun 21 2024 Dan Čermák <dan.cermak@posteo.net>
- 2.0.23:
This is a patch release in the 2.0.x release line to fix bugs and deal with compliance issues.
The primary bug fix in this release is to not duplicate the block attribute line above a detached block that breaks a dlist, which fixes the duplicate role warning on that detached block.
The main compliance improvement is to encode spaces in mailto links using %20, in accordance with RFC 3986, instead of +.
This release introduces several fixes and improvements related to parsing a table that has jagged rows.
If the colspan of the last cell in a row, including the last row, exceeds the specified number of columns, only that row is dropped.
On the other hand, if the last row is missing cells, an error message is logged to notify the author.
If a URL is used as the target of an xref shorthand, the processor now treats the URL as a fragment identifier instead of crashing.
Finally, repeating spaces in verbatim content in the manpage output are preserved.
[#]# Distribution
- [RubyGem (asciidoctor)](https://rubygems.org/gems/asciidoctor)
Asciidoctor is also packaged for [Fedora](https://apps.fedoraproject.org/packages/rubygem-asciidoctor), [Debian](https://packages.debian.org/sid/asciidoctor), [Ubuntu](https://packages.ubuntu.com/search?keywords=asciidoctor), [Alpine Linux](https://pkgs.alpinelinux.org/packages?name=asciidoctor), [OpenSUSE](https://software.opensuse.org/package/rubygem-asciidoctor), and [Homebrew](https://formulae.brew.sh/formula/asciidoctor). You can use the system's package manager to install the package named **asciidoctor**.
[#]# Changelog
[#]## Compliance
* Encode spaces in mailto links as %20, in accordance with RFC 3986, instead of + (#4576)
[#]## Improvements
* Log error when an incomplete row is detected at the end of a table (#4573)
[#]## Bug Fixes
* Don't leave behind empty line inside skipped preprocessor conditional (#4580)
* Don't duplicate block attribute line above detached block that breaks a dlist; fixes duplicate role on detached block (#4565)
* Don't crash when parsing xref shorthand if target starts with URL protocol and text is offset by space (#4570)
* Only drop current row if colspan of last cell exceeds specified number of columns (#4587)
* Drop last row if colspan of last cell in table exceeds specified number of columns (#4587)
* Preserve repeating spaces in verbatim content in manpage output (#3583)
[#]# Release meta
Released on: 2024-05-17
Released by: @mojavelinux
Release beer: Marmot Passage by Two 22 Brew
Logs: [resolved issues](https://github.com/asciidoctor/asciidoctor/issues?q=is%3Aissue+label%3Av2.0.23+is%3Aclosed) | [source diff](https://github.com/asciidoctor/asciidoctor/compare/v2.0.22...v2.0.23) | [gem diff](https://my.diffend.io/gems/asciidoctor/v2.0.22/v2.0.23)
[#]# Credits
A very special thanks to all the **awesome** [supporters of the Asciidoctor OpenCollective campaign](https://opencollective.com/asciidoctor), who provide critical funding for the ongoing development of this project.
2.0.22:
This is a patch release in the 2.0.x release line to further compatibility with Ruby 3.3.
The most critical fix in this release is to remove use of the base64 library since it will no longer being provided as part of the Ruby language starting with Ruby 3.4. When using Ruby 3.3, users would see a warning if this library is used, which happens when the data-uri attribute is set. The functionality has been replaced with a lower-level method on the String object (String#pack), which the base64 library delegates to anyway.
This release also sets the cloaked-context attribute on a source block that is defined using either a styled paragraph or a literal or fenced code structural container. This matches the functionality used for custom block extensions (when the source context does not match the final parsed context).
[#]# Distribution
- [RubyGem (asciidoctor)](https://rubygems.org/gems/asciidoctor)
Asciidoctor is also packaged for [Fedora](https://apps.fedoraproject.org/packages/rubygem-asciidoctor), [Debian](https://packages.debian.org/sid/asciidoctor), [Ubuntu](https://packages.ubuntu.com/search?keywords=asciidoctor), [Alpine Linux](https://pkgs.alpinelinux.org/packages?name=asciidoctor), [OpenSUSE](https://software.opensuse.org/package/rubygem-asciidoctor), and [Homebrew](https://formulae.brew.sh/formula/asciidoctor). You can use the system's package manager to install the package named **asciidoctor**.
[#]# Changelog
[#]## Improvements
* Set `cloaked-context` attribute on source block when context is not `:listing` (#4556)
[#]## Compliance
* Remove use of base64 library to prevent warning in Ruby >= 3.3 (#4561)
[#]# Release meta
Released on: 2024-03-08
Released by: @mojavelinux
Release beer: Turbo Laser by Resolute Brewing Company
Logs: [resolved issues](https://github.com/asciidoctor/asciidoctor/issues?q=is%3Aissue+label%3Av2.0.22+is%3Aclosed) | [source diff](https://github.com/asciidoctor/asciidoctor/compare/v2.0.21...v2.0.22) | [gem diff](https://my.diffend.io/gems/asciidoctor/v2.0.21/v2.0.22)
[#]# Credits
A very special thanks to all the **awesome** [supporters of the Asciidoctor OpenCollective campaign](https://opencollective.com/asciidoctor), who provide critical funding for the ongoing development of this project.
2.0.21:
This is a patch release in the 2.0.x release line, primarily to address compatibility with Ruby 3.3. While development of Asciidoctor 2.1 is beginning to pick up again, we extracted several other important improvements and bug fixes from main to include in this patch release.
The most critical fix in this release is to make Asciidoctor's logger compatible with the logger API in Ruby 3.3. The code is now tested against Ruby 3.3 on each change. Nearly as important, this release also turns off Ruby's system-dependent newline conversion when writing files so that Asciidoctor's output is consistent between *nix and Windows.
Numerous changes were made to correct AsciiDoc parsing. A nested dlist attached using a list continuation no longer consumes a detached paragraph. And an attached block is correctly attached to a nested dlist when that dlist is offset from its parent by an empty line. The secondary and tertiary terms on the `indexterm` macro are preserved when the primary term is quoted and contains an equals sign. And a bare URL enclosed in angle brackets acts as unconstrained syntax that stops at the first occurrence of a closing angle bracket. When includes are not enabled, any spaces in the include target are preserved when generating the fallback link.
Several changes were made to the DocBook output to address compliance. The abstract is moved inside the `<info>` tag (applies to both the abstract in the preamble as well an an abstract for a book part). The `scaledwidth` and `scale` attributes are now supported on an inline macro, like with a block image macro.
A few changes to the manpage output were made. Cells in the head row are styled as bold. Paragraph breaks in a normal table cell are preserved.
Finally, a few refinements to the default stylesheet were applied. The extra border below the doctitle when the sidebar toc is collapsed into main content area was removed. And a text decoration was added to the active footnote number link in the footnotes list.
[#]# Distribution
- [RubyGem (asciidoctor)](https://rubygems.org/gems/asciidoctor)
Asciidoctor is also packaged for [Fedora](https://apps.fedoraproject.org/packages/rubygem-asciidoctor), [Debian](https://packages.debian.org/sid/asciidoctor), [Ubuntu](https://packages.ubuntu.com/search?keywords=asciidoctor), [Alpine Linux](https://pkgs.alpinelinux.org/packages?name=asciidoctor), [OpenSUSE](https://software.opensuse.org/package/rubygem-asciidoctor), and [Homebrew](https://formulae.brew.sh/formula/asciidoctor). You can use the system's package manager to install the package named **asciidoctor**.
[#]# Changelog
[#]## Compliance
* Turn off system-dependent newline conversion when writing files; don't convert line feeds to system-dependent newline (#4550)
* Support logger in Ruby 3.3 by instantiating super class (#4493) (*@mtasaka*)
* Add support for `scaledwidth` and `scale` attributes on inline image macro in DocBook output (#4552)
* Update latest Ruby to 3.3 in CI workflows
[#]## Improvements
* Change title to doctitle in warning message about use of abstract to make subject more clear
* Modify default stylesheet to add text decoration to active footnote number link in footnotes list (#4530) (@Larhzu)
[#]## Bug Fixes
* Nested dlist attached using list continuation should not consume detached paragraph (#3535)
* Don't break nested dlist with attached block if offset from parent list by empty line (#3693)
* Preserve paragraph breaks in normal table cell in manpage output (#4481)
* Style cells in head row as bold in manpage output (#4490)
* Escape spaces in include target (using inline passthrough) when generating link from include directive (#4461)
* Move abstract inside info tag in DocBook output (#3602)
* Honor secondary and tertiary terms on `indexterm` macro when primary term is quoted and contains an equals sign (#3652)
* Remove extra border below doctitle when sidebar toc is collapsed into main content area (#4523)
* Treat bare URL enclosed in angle brackets as unconstrained syntax; only match until closing angled bracket (#4468)
* Allow URL enclosed in angled brackets syntax to be escaped using backslash (#4468)
[#]# Release meta
Released on: 2024-02-20
Released by: @mojavelinux
Release beer: Lunch by Maine Beer Company
Logs: [resolved issues](https://github.com/asciidoctor/asciidoctor/issues?q=is%3Aissue+label%3Av2.0.21+is%3Aclosed) | [source diff](https://github.com/asciidoctor/asciidoctor/compare/v2.0.20...v2.0.21) | [gem diff](https://my.diffend.io/gems/asciidoctor/v2.0.20/v2.0.21)
[#]# Credits
A very special thanks to all the **awesome** [supporters of the Asciidoctor OpenCollective campaign](https://opencollective.com/asciidoctor), who provide critical funding for the ongoing development of this project.
* Wed Jun 21 2023 Osama Alrifai <osamaalrifai18@gmail.com>
- update to 2.0.20
Bug Fixes::
* Update `release-version` attribute in READMEs and man page during release
* Rebuild man page during release
=== Details
{url-repo}/releases/tag/v2.0.20[git tag] | {url-repo}/compare/v2.0.19\...v2.0.20[full diff]
// end::compact[]
== 2.0.19 (2023-05-17) - @mojavelinux
Improvements::
* Return empty string instead of nil if raw or verbatim block has no lines
* Don't uppercase monospace span in section title in manpage output (#4402)
* Simplify processing of implicit link (i.e., autolink) by separating implicit and explicit match
* Generate partintro block consistently (#4450)
* Add Kiswahili translation for built-in labels (PR #4454) (*@bkmgit*)
Compliance::
* Fix call order so use of an include file with invalid encoding continues to raise error when using Ruby >= 3.2.0
* Fix test assertion for fallback Rouge stylesheet to be compatible with Rouge 4.1 (#4406) (*@tmzullinger*)
* Support `notitle` option on section as alternative to `untitled` to hide title (#4437)
* Add support for Haml 6 to template converter (#4429)
Bug Fixes::
* Process constrained inline passthrough inside monospace span (#4458)
* Catalog inline ref defined using anchor macro even when resolved reftext is empty
* Use while loop rather than recursion to locate next line to process; prevents stack limit error (#4368)
* Avoid matching numeric character references when searching for # in xref target (#4393)
* Use correct selector to collapse margin on first and last child of sidebar
* Don't allow target of include directive to start with a space (to distinguish it from a dlist item) or to end with a space
* Manify alt text of block image in manpage output (#4401)
* Adjust font size of term in horizontal dlist to match font size of term in regular dlist
* Implicitly attach nested list that starts with block attribute lines to dlist entry (#4268)
* Don't swallow square brackets when processing escaped URL macro
* Treat `uri:classloader:` as an absolute path prefix when running on JRuby (#3929)
* Apply reftext substitutions to value of `mantitle` attribute in DocBook output (#4448)
* Enclose `<reftext>` tag in `<article>` tag in DocBook output for man page (#4452)
* Correctly handle compat role on monospace and constrained passthrough when box attrlist or formatted text is escaped
* Fri Oct 28 2022 Stephan Kulow <coolo@suse.com>
updated to version 2.0.18
see installed CHANGELOG.adoc
== 2.0.18 (2022-10-15) - @mojavelinux
Improvements::
* Propagate `:to_dir` option to document of AsciiDoc table cell (#4297)
* Force encoding of attribute data passed via CLI to UTF-8 if transcoding fails (#4351) (*@zkaip*)
* Add include role to link macro that replaces include directive when include is not enabled
Bug Fixes::
* Change internal `uriish?` helper to only detect a URI pattern at start of a string; avoids misleading messages (#4357)
* Prevent highlight.js warning when no language is set on source block; don't call `highlightBlock` if `data-lang` attribute is absent (#4263)
* Don't raise error if `Asciidoctor::Extensions.unregister` is called before groups are initialized (#4270)
* If path is included both partially and fully, store it with true value (included fully) in includes table of document catalog
* Reset registry if activate is called on it again (#4256)
* Format source location in exception message when extension code is malformed
* Fix lineno on reader when `skip-front-matter` attribute is set but end of front matter is not found
* Fix `Asciidoctor::Cli::Invoker` constructor when first argument is a hash
* Update default stylesheet to honor marker on unordered list when marker is defined on ancestor unordered list (#4361)
=== Details
{url-repo}/releases/tag/v2.0.18[git tag] | {url-repo}/compare/v2.0.17\...v2.0.18[source diff]
// end::compact[]
* Tue Jan 25 2022 Stephan Kulow <coolo@suse.com>
updated to version 2.0.17
see installed CHANGELOG.adoc
* Thu Jun 24 2021 Stephan Kulow <coolo@suse.com>
updated to version 2.0.15
see installed CHANGELOG.adoc
* Wed Jan 20 2021 Stephan Kulow <coolo@suse.com>
updated to version 2.0.12
see installed CHANGELOG.adoc
* Fri Jul 19 2019 Stephan Kulow <coolo@suse.com>
- updated to version 2.0.10
see installed CHANGELOG.adoc
== 2.0.10 (2019-05-31) - @mojavelinux
Bug Fixes::
* fix Asciidoctor.convert_file to honor `header_footer: false` option when writing to file (#3316)
* fix placement of title on excerpt block (#3289)
* always pass same options to SyntaxHighlighter#docinfo, regardless of value of location argument
* fix signature of SyntaxHighlighter#docinfo method (#3300)
* when `icons` is set to `image`, enable image icons, but don't use it as the value of the `icontype` attribute (#3308)
// end::compact[]
* Sun May 05 2019 Stephan Kulow <coolo@suse.com>
- updated to version 2.0.9
see installed CHANGELOG.adoc
// tag::compact[]
== 2.0.9 (2019-04-30) - @mojavelinux
Bug Fixes::
* process multiple single-item menu macros in same line (#3279)
* register images in catalog correctly (#3283)
* rename AbstractNode#options method to AbstractNode#enabled_options so it doesn't get shadowed by Document#options (#3282)
* don't fail to convert document if alt attribute is not set on block or inline image (typically by an extension)
* fix lineno of source location on blocks that follow a detached list continuation (#3281)
* assume inline image type is "image" if not set (typically by an extension)
// end::compact[]
== 2.0.8 (2019-04-22) - @mojavelinux
Bug Fixes::
* restore background color applied to literal blocks by default stylesheet (#3258)
* use portability constants (CC_ALL, CC_ANY) in regular expressions defined in built-in converters (DocBook5 and ManPage)
* use portability constant (CC_ANY) in regular expression for custom inline macros
* use smarter margin collapsing for AsciiDoc table cell content; prevent passthrough content from being cut off (#3256)
* don't limit footnote ref to ASCII charset; allow any word character in Unicode to be used (#3269)
Improvements::
* register_for methods accept arguments as symbols (#3274)
* use Concurrent::Map instead of Concurrent::Hash in template converter
* use module_function keyword to define methods in Helpers
* move regular expression definitions to separate source file (internal change)
== 2.0.7 (2019-04-13) - @mojavelinux
Bug Fixes::
* fix crash when resolving ID from text and at least one candidate contains an unresolved xref (#3254)
* fix compatibility with Rouge 2.0
Improvements::
* improve documentation for the `-a` CLI option; explain that `@` modifier can be placed at end of name as alternative to end of value
* move source for main API entry points (load, load_file, convert, convert_file) to separate files (internal change)
* define main API entry points (load, load_file, convert, convert_file) as module functions
Also see https://github.com/asciidoctor/asciidoctor/milestone/33?closed=1[issues resolved in 2.0.x] (cumulative).
== 2.0.6 (2019-04-04) - @mojavelinux
Bug Fixes::
* assume implicit AsciiDoc extension on interdoc xref macro target with no extension (e.g., `document#`); restores 1.5.x behavior (#3231)
* don't fail to load application if call to Dir.home fails; use a rescue with fallback values (#3238)
* Helpers.rootname should only consider final path segment when dropping file extension
Improvements::
* implement Helpers.extname as a more efficient and flexible File.extname method
* check for AsciiDoc file extension using end_with? instead of resolving the extname and using a lookup
Also see https://github.com/asciidoctor/asciidoctor/milestone/33?closed=1[issues resolved in 2.0.x] (cumulative).
== 2.0.5 (2019-04-01) - @mojavelinux
Bug Fixes::
* fix crash when source highlighter is Rouge and source language is not set on block (#3223)
* update CLI and SyntaxHighlighter to allow Asciidoctor to load cleanly on Ruby 2.0 - 2.2
* CLI should use $stdin instead of STDIN to be consistent with the use of $stdout
* mark encoding of stdio objects used in CLI as UTF-8 (#3225)
* make Asciidoctor::SyntaxHighlighter::Config.register_for method public as documented
Also see https://github.com/asciidoctor/asciidoctor/milestone/33?closed=1[issues resolved in 2.0.x] (cumulative).
== 2.0.4 (2019-03-31) - @mojavelinux
Bug Fixes::
* allow Asciidoctor to load cleanly on Ruby 2.0 - 2.2 for distributions that provide support for these older Ruby versions
* make Asciidoctor::Converter::Config.register_for method public as documented
* remove unused Asciidoctor::Converter::BackendTraits#derive_backend_traits private method
* move Asciidoctor::Converter::BackendTraits.derive_backend_traits method to Asciidoctor::Converter
* mark render and render_file methods as deprecated in API docs
Also see https://github.com/asciidoctor/asciidoctor/milestone/33?closed=1[issues resolved in 2.0.x] (cumulative).
* Fri Mar 29 2019 Stephan Kulow <coolo@suse.com>
- updated to version 2.0.3
see installed CHANGELOG.adoc
/usr/bin/asciidoctor /usr/bin/asciidoctor-2.0.23 /usr/bin/asciidoctor.ruby4.0 /usr/bin/asciidoctor.ruby4.0-2.0.23 /usr/lib/ruby/gems/4.0.0/build_info /usr/lib/ruby/gems/4.0.0/cache/asciidoctor-2.0.23.gem /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23 /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/.yardopts /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/CHANGELOG.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/LICENSE /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/README-de.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/README-fr.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/README-jp.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/README-zh_CN.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/README.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/asciidoctor.gemspec /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/bin /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/bin/asciidoctor /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ar.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-be.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-bg.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ca.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-cs.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-da.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-de.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-en.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-es.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-fa.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-fi.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-fr.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-hu.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-id.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-it.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ja.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ko.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-nb.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-nl.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-nn.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-pl.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-pt.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-pt_BR.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ro.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-ru.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-sr.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-sr_Latn.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-sv.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-sw.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-th.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-tr.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-uk.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-vi.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-zh_CN.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes-zh_TW.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/locale/attributes.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/reference /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/reference/syntax.adoc /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/stylesheets /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/stylesheets/asciidoctor-default.css /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/data/stylesheets/coderay-asciidoctor.css /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/abstract_block.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/abstract_node.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/attribute_list.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/block.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/callouts.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/cli /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/cli.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/cli/invoker.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/cli/options.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/convert.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter/composite.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter/docbook5.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter/html5.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter/manpage.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/converter/template.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/float /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/float/truncate.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/hash /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/hash/merge.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/match_data /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/match_data/names.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/nil_or_empty.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/regexp /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/core_ext/regexp/is_match.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/document.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/extensions.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/helpers.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/inline.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/list.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/load.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/logging.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/parser.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/path_resolver.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/reader.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/rouge_ext.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/rx.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/section.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/stylesheets.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/substitutors.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/coderay.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/highlightjs.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/html_pipeline.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/prettify.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/pygments.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/syntax_highlighter/rouge.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/table.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/timings.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/version.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/lib/asciidoctor/writer.rb /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/man /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/man/asciidoctor.1 /usr/lib/ruby/gems/4.0.0/gems/asciidoctor-2.0.23/man/asciidoctor.adoc /usr/lib/ruby/gems/4.0.0/specifications/asciidoctor-2.0.23.gemspec /usr/share/doc/packages/ruby4.0-rubygem-asciidoctor /usr/share/doc/packages/ruby4.0-rubygem-asciidoctor/LICENSE /usr/share/libalternatives/asciidoctor /usr/share/libalternatives/asciidoctor-2.0.23 /usr/share/libalternatives/asciidoctor-2.0.23/60029.conf /usr/share/libalternatives/asciidoctor.ruby4.0 /usr/share/libalternatives/asciidoctor.ruby4.0/60029.conf /usr/share/libalternatives/asciidoctor/60029.conf
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Aug 30 00:19:39 2026