asciidoctor 2.0.12 → 2.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +142 -22
- data/LICENSE +1 -1
- data/README-de.adoc +15 -6
- data/README-fr.adoc +14 -8
- data/README-jp.adoc +15 -6
- data/README-zh_CN.adoc +14 -5
- data/README.adoc +135 -125
- data/asciidoctor.gemspec +4 -11
- data/data/locale/attributes-be.adoc +23 -0
- data/data/locale/attributes-it.adoc +4 -4
- data/data/locale/attributes-nl.adoc +6 -6
- data/data/locale/attributes-th.adoc +23 -0
- data/data/locale/attributes-vi.adoc +23 -0
- data/data/reference/syntax.adoc +14 -7
- data/data/stylesheets/asciidoctor-default.css +51 -52
- data/lib/asciidoctor.rb +12 -12
- data/lib/asciidoctor/abstract_block.rb +4 -4
- data/lib/asciidoctor/abstract_node.rb +10 -9
- data/lib/asciidoctor/attribute_list.rb +6 -6
- data/lib/asciidoctor/block.rb +6 -6
- data/lib/asciidoctor/cli/invoker.rb +0 -1
- data/lib/asciidoctor/cli/options.rb +27 -26
- data/lib/asciidoctor/convert.rb +1 -0
- data/lib/asciidoctor/converter.rb +5 -3
- data/lib/asciidoctor/converter/docbook5.rb +45 -26
- data/lib/asciidoctor/converter/html5.rb +89 -69
- data/lib/asciidoctor/converter/manpage.rb +113 -86
- data/lib/asciidoctor/converter/template.rb +11 -12
- data/lib/asciidoctor/document.rb +44 -51
- data/lib/asciidoctor/extensions.rb +10 -12
- data/lib/asciidoctor/helpers.rb +3 -6
- data/lib/asciidoctor/list.rb +2 -6
- data/lib/asciidoctor/load.rb +13 -11
- data/lib/asciidoctor/logging.rb +10 -8
- data/lib/asciidoctor/parser.rb +135 -150
- data/lib/asciidoctor/path_resolver.rb +3 -3
- data/lib/asciidoctor/reader.rb +72 -71
- data/lib/asciidoctor/rx.rb +4 -3
- data/lib/asciidoctor/substitutors.rb +117 -117
- data/lib/asciidoctor/syntax_highlighter.rb +8 -11
- data/lib/asciidoctor/syntax_highlighter/coderay.rb +2 -1
- data/lib/asciidoctor/syntax_highlighter/highlightjs.rb +1 -1
- data/lib/asciidoctor/syntax_highlighter/pygments.rb +6 -5
- data/lib/asciidoctor/syntax_highlighter/rouge.rb +33 -26
- data/lib/asciidoctor/table.rb +17 -19
- data/lib/asciidoctor/timings.rb +3 -3
- data/lib/asciidoctor/version.rb +1 -1
- data/man/asciidoctor.1 +10 -11
- data/man/asciidoctor.adoc +8 -7
- metadata +14 -67
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae8326d324111eddacde180bd2f207e1bc0bfd632695836e732a058165a0ac00
|
4
|
+
data.tar.gz: 27c06f4266e1e56a9c5c6ad1c86947361ee9c9cc8d32763af443329cebeea4be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c42130c39f04726d9279edd8fe6bd9b93f55e02164161feb3cf84edfd74039e6e9fae94e4bed1f77612bc1c015f1dec90e015df4ded0f1bca11d7cf7eb8d1a6a
|
7
|
+
data.tar.gz: 676647258232f12d900507468935812f72faaa43fd78f68af0c03aa33e2d2abb81cb0607a9ddb84f7e5f5f3cf67882f1ffc6703aa3c016659cee2053113b061e
|
data/CHANGELOG.adoc
CHANGED
@@ -11,9 +11,127 @@ endif::[]
|
|
11
11
|
{uri-asciidoctor}[Asciidoctor] is a _fast_, open source text processor and publishing toolchain for converting {uri-asciidoc}[AsciiDoc] content into HTML 5, DocBook 5, and other formats.
|
12
12
|
|
13
13
|
This document provides a high-level view of the changes introduced in Asciidoctor by release.
|
14
|
-
For
|
14
|
+
For an even more detailed look at what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.
|
15
15
|
|
16
|
-
|
16
|
+
This project utilizes semantic versioning.
|
17
|
+
|
18
|
+
// tag::compact[]
|
19
|
+
== 2.0.16 (2021-08-03) - @mojavelinux
|
20
|
+
|
21
|
+
Bug Fixes::
|
22
|
+
|
23
|
+
* Include all lines outside of specified tagged region when tag filter on include directive is a single negated tag (#4048)
|
24
|
+
* Only interpret negated wildcard in tag filter on include directive as implicit globstar if it precedes other tags (#4086)
|
25
|
+
* Change ifeval directive to resolve to false if comparison operation cannot be performed (#4046)
|
26
|
+
* Don't crash if `:to_file` option is passed to `load` or `load_file` and value is not a string (#4055)
|
27
|
+
* Use automatic link text if ID in shorthand xref is followed by dangling comma (e.g., `+<<idname,>>+`)
|
28
|
+
* Update default stylesheet to indent blocks attached to list item in checklist (#2550)
|
29
|
+
* Update default stylesheet to reenable styling of implicit lead role on first paragraph of preamble inside AsciiDoc table cell
|
30
|
+
* Update default stylesheet to fix conflict between text decoration and bottom border on abbr[title] element
|
31
|
+
* Change invalid font family "sans" in default stylesheet to "sans-serif"
|
32
|
+
* Fix missing automatic reftext for internal xrefs in manpage output (#4110)
|
33
|
+
* Replace numeric character reference for plus in manpage output (#4059)
|
34
|
+
* Replace numeric character reference for degree sign in manpage output (#4059)
|
35
|
+
* Convert apostrophe to the portable `+\*(Aq+` variable instead of the groff-specific escape `\(aq` (#4060) (*@felipec*)
|
36
|
+
* Document the `-e, --embedded` option flag in the man page, which replaces the outdated `-e, --eruby` option flag
|
37
|
+
|
38
|
+
Improvements::
|
39
|
+
|
40
|
+
* Use queue to iterate over lines in reader instead of stack (#4106)
|
41
|
+
* Uppercase automatic reftext for level-2 section titles in manpage output if reftext matches section title (#4110)
|
42
|
+
* Show safe modes in strictness order in CLI help (#4065)
|
43
|
+
* Remove redundant styles from the default stylesheet
|
44
|
+
* Update font styles for summary element in default stylesheet to match font styles of paragraph (#4114)
|
45
|
+
* Update default stylesheet to indent content of details element (#4116)
|
46
|
+
* Update default stylesheet to use custom marker for summary element to make appearance consistent (#4116)
|
47
|
+
* Add Vietnamese translation of built-in attributes (PR #4066) (*@nguyenhoa93*)
|
48
|
+
* Add Thai translation of built-in attributes (PR #4113) (*@ammaneena*)
|
49
|
+
|
50
|
+
Build / Infrastructure::
|
51
|
+
|
52
|
+
* Import source of default stylesheet into this repository; use PostCSS with cssnano to minify (#4062)
|
53
|
+
* Use autoprefixer to manage browser prefixes in default stylesheet (#4118)
|
54
|
+
|
55
|
+
// end::compact[]
|
56
|
+
== 2.0.15 (2021-04-27) - @mojavelinux
|
57
|
+
|
58
|
+
Bug Fixes::
|
59
|
+
|
60
|
+
* Don't include trailing period, question mark, or exclamation point in target (URL) of autolink (#3860)
|
61
|
+
* Don't assign nil value to named attribute mapped to absent positional attribute when parsing attrlist (#4033)
|
62
|
+
* Remove leading and trailing spaces around role on inline phrase (#4035)
|
63
|
+
* Ignore empty role on inline phrase defined using legacy syntax and followed by comma (#4035)
|
64
|
+
* Use xreftext on document as fallback link text in HTML output for inter-document xref that resolves to current document when no link text is provided (#4032)
|
65
|
+
* Use xreftext on document as fallback link text in HTML output for internal xref with empty fragment when no link text is provided (#4032)
|
66
|
+
* Use document ID as linkend in DocBook output for internal xref with empty fragment; auto-generating one if necessary (#4032)
|
67
|
+
|
68
|
+
Improvements::
|
69
|
+
|
70
|
+
* Format keyboard references in monospace in manpage output
|
71
|
+
|
72
|
+
Build / Infrastructure::
|
73
|
+
|
74
|
+
* Get remaining invoker tests working on JRuby 9.1 for Windows
|
75
|
+
|
76
|
+
== 2.0.14 (2021-04-19) - @mojavelinux
|
77
|
+
|
78
|
+
Bug Fixes::
|
79
|
+
|
80
|
+
* Don't allow AsciiDoc table cell to set document attribute that was unset from the API (exceptions include: `compat-mode`, `toc`, `showtitle`, and `notitle`) (#4017)
|
81
|
+
* Ensure default document attributes unset in parent document remain unset in AsciiDoc table cell (#2586)
|
82
|
+
* Allow the `showtitle` / `notitle` attribute to be toggled in an AsciiDoc table cell if set or unset in parent document (#4018)
|
83
|
+
* Ensure mtime of input file honors TZ environment variable on JRuby for Windows (affects value of `docdatetime` attribute) (#3550)
|
84
|
+
* Honor caption attribute on blocks that support captioned title even if corresponding `*-caption` document attribute (e.g., `example-caption`) is not set (#4023)
|
85
|
+
* Suppress missing attribute warning when applying substitutions to implicit document title for assignment to intrinsic `doctitle` attribute (#4024)
|
86
|
+
* Increment counter (but not the corresponding attribute) if attribute is locked (#4013)
|
87
|
+
|
88
|
+
Improvements::
|
89
|
+
|
90
|
+
* Use attribute, if set, as seed value for counter even if not already registered as a counter (#4014)
|
91
|
+
* Allow subs attribute value on Inline node returned by process method for custom inline macro to be a String (#3938)
|
92
|
+
* Allow value of `user-home` attribute to be overridden by API or CLI (#3732)
|
93
|
+
|
94
|
+
Build / Infrastructure::
|
95
|
+
|
96
|
+
* Run tests on JRuby for Windows (#3550)
|
97
|
+
|
98
|
+
== 2.0.13 (2021-04-10) - @mojavelinux
|
99
|
+
|
100
|
+
Bug Fixes::
|
101
|
+
|
102
|
+
* Rollback change for #3470, which added logic to remove leading and trailing empty lines in an AsciiDoc include file; instead skip empty lines before processing document header (#3997)
|
103
|
+
* Don't allow `counter` and `counter2` attribute directives to override locked attributes (#3939) (*@mogztter*)
|
104
|
+
* Fix crash when resolving next value in sequence for counter with non-numeric value (#3940)
|
105
|
+
* Honor list of tags following negated wildcard on include directive (#3932)
|
106
|
+
* Update default stylesheet to remove dash in front of cite on nested quote block (#3847)
|
107
|
+
* Don't mangle formatting macros when uppercasing section titles in man page output (#3892)
|
108
|
+
* Don't escape hyphen in `manname` in man page output
|
109
|
+
* Remove extra `.sp` line before content of verse block in man page output
|
110
|
+
* Fix layout of footnotes in man page output (#3989)
|
111
|
+
* Fix formatting of footnote text with URL in man page output (#3988)
|
112
|
+
* Remove redundant trailing space on URL followed by non-adjacent text in man page output (#4004)
|
113
|
+
* Use `.bp` macro at location of page break in man page output (#3992)
|
114
|
+
|
115
|
+
Improvements::
|
116
|
+
|
117
|
+
* Extract method to create lexer and formatter in Rouge adapter (#3953) (*@Oblomov*)
|
118
|
+
* Add support for pygments.rb 2.x (#3969) (*@slonopotamus*)
|
119
|
+
* Allow `NullLogger` to be enabled by setting the `:logger` option to a falsy value (#3982)
|
120
|
+
* Substitute attributes in manpurpose part of NAME section in manpage doctype (#4000)
|
121
|
+
* Output all mannames in name section of HTML output for manpage doctype (#3757)
|
122
|
+
|
123
|
+
Build / Infrastructure::
|
124
|
+
|
125
|
+
* Enable running tests as root (PR #3874) (*@mikemckiernan*)
|
126
|
+
* Run tests against both pygments.rb 1.x and 2.x (#3969) (*@slonopotamus*)
|
127
|
+
* Speed up CI by using Bundler cache (PR #3901) (*@slonopotamus*)
|
128
|
+
|
129
|
+
Documentation::
|
130
|
+
|
131
|
+
* Import documentation for processor into this repository (#3861) (*@graphitefriction*)
|
132
|
+
* Add Belarusian translation of built-in attributes (PR #3928) (*@morganov*)
|
133
|
+
|
134
|
+
== 2.0.12 (2020-11-10) - @mojavelinux
|
17
135
|
|
18
136
|
Bug Fixes::
|
19
137
|
|
@@ -80,6 +198,7 @@ Bug Fixes::
|
|
80
198
|
|
81
199
|
Compliance::
|
82
200
|
|
201
|
+
* Account for empty positional attribute when parsing attrlist (#3813)
|
83
202
|
* Add support for muted option to self-hosted video (#3408)
|
84
203
|
* Move style tag for convert-time syntax highlighters (coderay, rouge, pygments) into head (#3462)
|
85
204
|
* Move style tag for client-side syntax highlighters (highlight.js, prettify) into head (#3503)
|
@@ -172,7 +291,7 @@ Also see https://github.com/asciidoctor/asciidoctor/milestone/33?closed=1[issues
|
|
172
291
|
|
173
292
|
Bug Fixes::
|
174
293
|
|
175
|
-
* assume implicit AsciiDoc extension on
|
294
|
+
* assume implicit AsciiDoc extension on inter-document xref macro target with no extension (e.g., `document#`); restores 1.5.x behavior (#3231)
|
176
295
|
* don't fail to load application if call to Dir.home fails; use a rescue with fallback values (#3238)
|
177
296
|
* Helpers.rootname should only consider final path segment when dropping file extension
|
178
297
|
|
@@ -285,7 +404,7 @@ Enhancements / Compliance::
|
|
285
404
|
* change default value of third argument to Abstractnode#attr / AbstractNode#attr? to nil so attribute doesn't inherit by default (#3059)
|
286
405
|
* look for table-frame, table-grid, and table-stripes attributes on document as fallback for frame, grid, and stripes attributes on table (#3059)
|
287
406
|
* add support for hover mode for table stripes (stripes=hover) (#3110)
|
288
|
-
* always assume the target of a shorthand
|
407
|
+
* always assume the target of a shorthand inter-document xref is a reference to an AsciiDoc document (source-to-source) (#3021)
|
289
408
|
* if the target of a formal xref macro has a file extension, assume it's a path reference (#3021)
|
290
409
|
* never assume target of a formal xref macro is a path reference unless a file extension or fragment is present (#3021)
|
291
410
|
* encode characters in URI to comply with RFC-3986
|
@@ -306,7 +425,7 @@ Enhancements / Compliance::
|
|
306
425
|
* AbstractBlock#find_by looks inside AsciiDoc table cells if traverse_documents selector option is true (#3101)
|
307
426
|
* AbstractBlock#find_by finds table cells, which can be selected using the :table_cell context in the selector (#2524)
|
308
427
|
* allow ampersand to be used in e-mail address (#2553)
|
309
|
-
*
|
428
|
+
* propagate ID assigned to inline passthrough (#2912)
|
310
429
|
* rename control keywords in find_by to better align with the standard NodeFilter terminology
|
311
430
|
* stop find_by iteration if filter block returns :stop directive
|
312
431
|
* rename header_footer option to standalone (while still honoring header_footer for backwards compatibility) (#1444)
|
@@ -324,6 +443,7 @@ Enhancements / Compliance::
|
|
324
443
|
* require space after semi-colon that separates multiple authors (#2441)
|
325
444
|
* catalog inline anchors at start of callout list items (#2818) (*@owenh000*)
|
326
445
|
* add parse_attributes helper method to base extension Processor class (#2134)
|
446
|
+
* require at least one character in the term position of a description list (#2766)
|
327
447
|
|
328
448
|
Improvements::
|
329
449
|
|
@@ -405,7 +525,7 @@ Bug Fixes::
|
|
405
525
|
Build / Infrastructure::
|
406
526
|
|
407
527
|
* clear SOURCE_DATE_EPOCH env var when testing timezones (PR #2969) (*@aerostitch*)
|
408
|
-
* remove compat folder (removes the AsciiDoc
|
528
|
+
* remove compat folder (removes the AsciiDoc.py config file that provides pseudo-compliance with Asciidoctor and a stylesheet for an old Font Awesome migration)
|
409
529
|
* add Ruby 2.6.0 to build matrix
|
410
530
|
* stop running CI job on unsupported versions of Ruby
|
411
531
|
* exclude test suite, build script, and Gemfile from gem (#3044)
|
@@ -522,11 +642,11 @@ Enhancements::
|
|
522
642
|
|
523
643
|
* BREAKING: drop XML tags, character refs, and non-word characters (except hyphen, dot, and space) when auto-generating section IDs (#794)
|
524
644
|
** hyphen, dot, and space are replaced with value of idseparator, if set; otherwise, spaces are dropped
|
525
|
-
* BREAKING: disable
|
645
|
+
* BREAKING: disable inter-document xrefs in compat mode (#2740)
|
526
646
|
* BREAKING: automatically parse attributes in link macro if equals is present, ignoring linkattrs (except in compat mode) (#2059)
|
527
647
|
* pass non-AsciiDoc file extensions in target of xref through unprocessed (#2740)
|
528
|
-
* process any known AsciiDoc file extension in target of shorthand
|
529
|
-
* only allow .adoc to be used in target of formal xref macro to create an
|
648
|
+
* process any known AsciiDoc file extension in target of shorthand inter-document xref if hash is also present (e.g., `<<target.asciidoc#,text>>`) (#2740)
|
649
|
+
* only allow .adoc to be used in target of formal xref macro to create an inter-document xref (with or without a hash) (#2740)
|
530
650
|
* allow attribute names to contain any word character defined by Unicode (#2376, PR #2393)
|
531
651
|
* do not recognize attribute entry line if name contains a colon (PR #2377)
|
532
652
|
* route all processor messages through a logger instead of using Kernel#warn (#44, PR #2660)
|
@@ -538,9 +658,9 @@ Enhancements::
|
|
538
658
|
* add `--failure-level=LEVEL` option to CLI to force non-zero exit code if specified logging level is reached (#2003, PR #2674)
|
539
659
|
* parse text of xref macro as attributes if attribute signature found (equal sign) (#2381)
|
540
660
|
* allow xrefstyle to be specified per xref by assigning the xrefstyle attribute on the xref macro (#2365)
|
541
|
-
* recognize target with .adoc extension in xref macro as an
|
661
|
+
* recognize target with .adoc extension in xref macro as an inter-document xref
|
542
662
|
* resolve nested includes in remote documents relative to URI (#2506, PR #2511)
|
543
|
-
* allow `relfilesuffix` attribute to control file extension used for
|
663
|
+
* allow `relfilesuffix` attribute to control file extension used for inter-document xrefs (#1273)
|
544
664
|
* support `!name@` (preferred), `!name=@`, `name!@`, and `name!=@` syntax to soft unset attribute from API or CLI (#642, PR #2649)
|
545
665
|
* allow modifier to be placed at end of name to soft set an attribute (e.g., `icons@=font`) (#642, PR #2649)
|
546
666
|
* interpret `false` attribute value defined using API as a soft unset (#642, PR #2649)
|
@@ -654,7 +774,7 @@ Improvements / Refactoring::
|
|
654
774
|
* add methods to read results from timings (#2578, PR #2580)
|
655
775
|
* collapse bottom margin of last block in AsciiDoc table cell (#2568, PR #2593)
|
656
776
|
* set authorcount to 0 if there are no authors (#2519, PR #2520)
|
657
|
-
* validate fragment of
|
777
|
+
* validate fragment of inter-document xref that resolves to current doc (#2448, PR #2449)
|
658
778
|
* put id attribute on tag around phrase instead of preceding anchor (#2445, PR #2446)
|
659
779
|
* add .plist extension to XML circumfix comment family (#2430, PR #2431) (*@akosma*)
|
660
780
|
* alias Document#title method to no args Document#doctitle method (#2429, PR #2432)
|
@@ -1596,13 +1716,13 @@ Compliance::
|
|
1596
1716
|
* skip include directives when processing comment blocks
|
1597
1717
|
* added xmlns to root element in docbook45 backend, set noxmlns attribute to disable
|
1598
1718
|
* added a Compliance module to control compliance-related behavior
|
1599
|
-
* added linkattrs feature to AsciiDoc compatibility file (#441)
|
1600
|
-
* added level-5 heading to AsciiDoc compatibility file (#388)
|
1601
|
-
* added new XML-based callouts to AsciiDoc compatibility file
|
1602
|
-
* added absolute and uri image target matching to AsciiDoc compatibility file
|
1603
|
-
* added float attribute on inline image macro to AsciiDoc compatibility file
|
1604
|
-
* removed linkcss in AsciiDoc compatibility file
|
1605
|
-
* fixed fenced code entry in compatibility file
|
1719
|
+
* added linkattrs feature to AsciiDoc.py compatibility file (#441)
|
1720
|
+
* added level-5 heading to AsciiDoc.py compatibility file (#388)
|
1721
|
+
* added new XML-based callouts to AsciiDoc.py compatibility file
|
1722
|
+
* added absolute and uri image target matching to AsciiDoc.py compatibility file
|
1723
|
+
* added float attribute on inline image macro to AsciiDoc.py compatibility file
|
1724
|
+
* removed linkcss in AsciiDoc.py compatibility file
|
1725
|
+
* fixed fenced code entry in AsciiDoc.py compatibility file
|
1606
1726
|
|
1607
1727
|
Bug Fixes::
|
1608
1728
|
|
@@ -1700,7 +1820,7 @@ Enhancements::
|
|
1700
1820
|
|
1701
1821
|
Compliance::
|
1702
1822
|
|
1703
|
-
* ~ 99.5% compliance with AsciiDoc
|
1823
|
+
* ~ 99.5% compliance with AsciiDoc.py
|
1704
1824
|
* drop line if target of include directive is blank (#376)
|
1705
1825
|
* resolve attribute references in target of include directive (#367)
|
1706
1826
|
* added irc scheme to link detection (#314)
|
@@ -1761,7 +1881,7 @@ Enhancements::
|
|
1761
1881
|
|
1762
1882
|
Compliance::
|
1763
1883
|
|
1764
|
-
* added
|
1884
|
+
* added compatibility file to make AsciiDoc.py behave like Asciidoctor (#257)
|
1765
1885
|
* restore alpha-based xml entities (#211)
|
1766
1886
|
* implement video and audio block macros (#155)
|
1767
1887
|
* implement toc block macro (#269)
|
@@ -1861,7 +1981,7 @@ Enhancements::
|
|
1861
1981
|
* added hardbreaks option to preserve line breaks in paragraph text (#119)
|
1862
1982
|
* :header_footer option defaults to false when using the API, unless rendering to file
|
1863
1983
|
* added idseparator attribute to customized separator used in generated section ids
|
1864
|
-
* do not number special sections (differs from AsciiDoc)
|
1984
|
+
* do not number special sections (differs from AsciiDoc.py)
|
1865
1985
|
|
1866
1986
|
Compliance::
|
1867
1987
|
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
|
-
Copyright (C) 2012-
|
3
|
+
Copyright (C) 2012-present Dan Allen, Sarah White, Ryan Waldron, and the
|
4
4
|
individual contributors to Asciidoctor.
|
5
5
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
data/README-de.adoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= Asciidoctor
|
2
2
|
Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>; Ryan Waldron <https://github.com/erebor[@erebor]>
|
3
|
-
v2.0.
|
3
|
+
v2.0.16, 2021-08-03
|
4
4
|
// settings:
|
5
5
|
:idprefix:
|
6
6
|
:idseparator: -
|
@@ -8,6 +8,7 @@ v2.0.12, 2020-11-10
|
|
8
8
|
:language: {source-language}
|
9
9
|
ifndef::env-github[:icons: font]
|
10
10
|
ifdef::env-github[]
|
11
|
+
:status:
|
11
12
|
:outfilesuffix: .adoc
|
12
13
|
:caution-caption: :fire:
|
13
14
|
:important-caption: :exclamation:
|
@@ -16,7 +17,7 @@ ifdef::env-github[]
|
|
16
17
|
:warning-caption: :warning:
|
17
18
|
endif::[]
|
18
19
|
// Variables:
|
19
|
-
:release-version: 2.0.
|
20
|
+
:release-version: 2.0.16
|
20
21
|
// URIs:
|
21
22
|
:uri-org: https://github.com/asciidoctor
|
22
23
|
:uri-repo: {uri-org}/asciidoctor
|
@@ -40,7 +41,7 @@ endif::[]
|
|
40
41
|
:uri-license: {uri-rel-file-base}LICENSE
|
41
42
|
:uri-tests: {uri-rel-tree-base}test
|
42
43
|
:uri-discuss: https://discuss.asciidoctor.org
|
43
|
-
:uri-
|
44
|
+
:uri-chat: https://asciidoctor.zulipchat.com
|
44
45
|
:uri-rubygem: https://rubygems.org/gems/asciidoctor
|
45
46
|
:uri-what-is-asciidoc: {uri-docs}/what-is-asciidoc
|
46
47
|
:uri-user-manual: {uri-docs}/user-manual
|
@@ -83,6 +84,14 @@ endif::[]
|
|
83
84
|
* {uri-docs}/user-manual[Asciidoctor Gebrauchshandbuch]
|
84
85
|
* {uri-docs}/asciidoc-syntax-quick-reference[AsciiDoc Syntax-Referenz]
|
85
86
|
|
87
|
+
ifdef::status[]
|
88
|
+
image:https://img.shields.io/gem/v/asciidoctor.svg[Latest Release, link={uri-gem}]
|
89
|
+
image:https://img.shields.io/badge/rubydoc.info-{release-version}-blue.svg[library (API) docs,link=https://www.rubydoc.info/gems/asciidoctor/{release-version}]
|
90
|
+
image:https://github.com/asciidoctor/asciidoctor/workflows/CI/badge.svg[Build Status (GitHub Actions),link={uri-repo}/actions]
|
91
|
+
image:https://inch-ci.org/github/asciidoctor/asciidoctor.svg?branch=master[Inline docs,link=https://inch-ci.org/github/asciidoctor/asciidoctor]
|
92
|
+
image:https://img.shields.io/badge/zulip-join_chat-brightgreen.svg[project chat,link=https://asciidoctor.zulipchat.com/]
|
93
|
+
endif::[]
|
94
|
+
|
86
95
|
== Sponsoren
|
87
96
|
|
88
97
|
Wir möchten unseren großzügigen Sponsoren danken, ohne deren Unterstützung Asciidoctor nicht möglich wäre.
|
@@ -425,9 +434,9 @@ Asciidoctor wurde entwickelt, um Ihnen das Schreiben und Veröffentlichen Ihrer
|
|
425
434
|
Aber wir können es nicht ohne ihr Feedback machen!
|
426
435
|
Wir ermutigen Sie, Fragen zu stellen und alle Aspekte des Projekts auf der Diskussionsliste, auf Twitter oder im Chatroom zu diskutieren.
|
427
436
|
|
428
|
-
Chat (
|
437
|
+
Chat (Zulip):: {uri-chat}
|
429
438
|
Discussionsliste (Nabble):: {uri-discuss}
|
430
|
-
Twitter:: https://twitter.com/
|
439
|
+
Twitter:: Follow https://twitter.com/asciidoctor[@asciidoctor] or search for the https://twitter.com/search?f=tweets&q=%23asciidoctor[#asciidoctor] hashtag
|
431
440
|
|
432
441
|
ifdef::env-github[]
|
433
442
|
Weitere Informationen und Dokumentation zu Asciidoctor finden Sie auf der Website des Projekts.
|
@@ -443,7 +452,7 @@ Asciidoctor Organization auf GitHub:: {uri-org}
|
|
443
452
|
|
444
453
|
== Lizenz
|
445
454
|
|
446
|
-
Copyright (C) 2012-
|
455
|
+
Copyright (C) 2012-present Dan Allen, Sarah White, Ryan Waldron, und die einzelnen Mitarbeiter von Asciidoctor.
|
447
456
|
Die Nutzung dieser Software wird unter den Bedingungen der MIT-Lizenz gewährt.
|
448
457
|
|
449
458
|
Siehe die {uri-license}[LIZENZ] für den vollen Lizenztext.
|
data/README-fr.adoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= Asciidoctor
|
2
2
|
Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>; Ryan Waldron <https://github.com/erebor[@erebor]>
|
3
|
-
v2.0.
|
3
|
+
v2.0.16, 2021-08-03
|
4
4
|
// settings:
|
5
5
|
:idprefix:
|
6
6
|
:idseparator: -
|
@@ -8,6 +8,7 @@ v2.0.12, 2020-11-10
|
|
8
8
|
:language: {source-language}
|
9
9
|
ifndef::env-github[:icons: font]
|
10
10
|
ifdef::env-github[]
|
11
|
+
:status:
|
11
12
|
:outfilesuffix: .adoc
|
12
13
|
:caution-caption: :fire:
|
13
14
|
:important-caption: :exclamation:
|
@@ -16,7 +17,7 @@ ifdef::env-github[]
|
|
16
17
|
:warning-caption: :warning:
|
17
18
|
endif::[]
|
18
19
|
// Variables:
|
19
|
-
:release-version: 2.0.
|
20
|
+
:release-version: 2.0.16
|
20
21
|
// URIs:
|
21
22
|
:uri-org: https://github.com/asciidoctor
|
22
23
|
:uri-repo: {uri-org}/asciidoctor
|
@@ -40,7 +41,7 @@ endif::[]
|
|
40
41
|
:uri-license: {uri-rel-file-base}LICENSE
|
41
42
|
:uri-tests: {uri-rel-tree-base}test
|
42
43
|
:uri-discuss: https://discuss.asciidoctor.org
|
43
|
-
:uri-
|
44
|
+
:uri-chat: https://asciidoctor.zulipchat.com
|
44
45
|
:uri-rubygem: https://rubygems.org/gems/asciidoctor
|
45
46
|
:uri-what-is-asciidoc: {uri-docs}/what-is-asciidoc
|
46
47
|
:uri-user-manual: {uri-docs}/user-manual
|
@@ -80,6 +81,14 @@ endif::[]
|
|
80
81
|
* {uri-docs}/asciidoc-syntax-quick-reference[Syntaxe de Référence AsciiDoc]
|
81
82
|
* {uri-docs}/user-manual[Manuel Utilisateur Asciidoctor]
|
82
83
|
|
84
|
+
ifdef::status[]
|
85
|
+
image:https://img.shields.io/gem/v/asciidoctor.svg[Latest Release, link={uri-gem}]
|
86
|
+
image:https://img.shields.io/badge/rubydoc.info-{release-version}-blue.svg[library (API) docs,link=https://www.rubydoc.info/gems/asciidoctor/{release-version}]
|
87
|
+
image:https://github.com/asciidoctor/asciidoctor/workflows/CI/badge.svg[Build Status (GitHub Actions),link={uri-repo}/actions]
|
88
|
+
image:https://inch-ci.org/github/asciidoctor/asciidoctor.svg?branch=master[Inline docs,link=https://inch-ci.org/github/asciidoctor/asciidoctor]
|
89
|
+
image:https://img.shields.io/badge/zulip-join_chat-brightgreen.svg[project chat,link=https://asciidoctor.zulipchat.com/]
|
90
|
+
endif::[]
|
91
|
+
|
83
92
|
== Sponsors
|
84
93
|
|
85
94
|
Nous souhaitons exprimer toute notre reconnaissance à nos généreux sponsors, sans qui Asciidoctor ne pourrait pas exister.
|
@@ -391,12 +400,9 @@ Asciidoctor est développé dans le but de vous aider à écrire et publier du c
|
|
391
400
|
Mais nous ne pouvons pas le faire sans vos avis !
|
392
401
|
Nous vous encourageons à poser vos questions et à discuter de n'importe quels aspects du projet sur la liste de discussion, Twitter ou dans le salon de discussion.
|
393
402
|
|
394
|
-
Chat (
|
403
|
+
Chat (Zulip):: {uri-chat}
|
395
404
|
Forum (Nabble):: {uri-discuss}
|
396
405
|
Twitter:: hashtag https://twitter.com/search?f=tweets&q=%23asciidoctor[#asciidoctor] ou la mention https://twitter.com/asciidoctor[@asciidoctor]
|
397
|
-
////
|
398
|
-
IRC (Chat):: {uri-irc}[#asciidoctor] sur FreeNode IRC
|
399
|
-
////
|
400
406
|
|
401
407
|
ifdef::env-github[]
|
402
408
|
De plus amples informations et documentations sur Asciidoctor peuvent être trouvées sur le site web du projet.
|
@@ -412,7 +418,7 @@ L'organisation Asciidoctor sur GitHub:: {uri-org}
|
|
412
418
|
|
413
419
|
== Licence
|
414
420
|
|
415
|
-
Copyright (C) 2012-
|
421
|
+
Copyright (C) 2012-present Dan Allen, Sarah White, Ryan Waldron, et les contributeurs individuels d'Asciidoctor.
|
416
422
|
Une utilisation libre de ce logiciel est autorisée sous les termes de la licence MIT.
|
417
423
|
|
418
424
|
Consultez le fichier {uri-license}[LICENSE] pour plus de détails.
|
data/README-jp.adoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= Asciidoctor
|
2
2
|
Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>; Ryan Waldron <https://github.com/erebor[@erebor]>
|
3
|
-
v2.0.
|
3
|
+
v2.0.16, 2021-08-03
|
4
4
|
// settings:
|
5
5
|
:idprefix:
|
6
6
|
:idseparator: -
|
@@ -8,6 +8,7 @@ v2.0.12, 2020-11-10
|
|
8
8
|
:language: {source-language}
|
9
9
|
ifndef::env-github[:icons: font]
|
10
10
|
ifdef::env-github[]
|
11
|
+
:status:
|
11
12
|
:outfilesuffix: .adoc
|
12
13
|
:caution-caption: :fire:
|
13
14
|
:important-caption: :exclamation:
|
@@ -16,7 +17,7 @@ ifdef::env-github[]
|
|
16
17
|
:warning-caption: :warning:
|
17
18
|
endif::[]
|
18
19
|
// Variables:
|
19
|
-
:release-version: 2.0.
|
20
|
+
:release-version: 2.0.16
|
20
21
|
// URIs:
|
21
22
|
:uri-org: https://github.com/asciidoctor
|
22
23
|
:uri-repo: {uri-org}/asciidoctor
|
@@ -44,7 +45,7 @@ endif::[]
|
|
44
45
|
:uri-license: {uri-rel-file-base}LICENSE
|
45
46
|
:uri-tests: {uri-rel-tree-base}test
|
46
47
|
:uri-discuss: https://discuss.asciidoctor.org
|
47
|
-
:uri-
|
48
|
+
:uri-chat: https://asciidoctor.zulipchat.com
|
48
49
|
:uri-rubygem: https://rubygems.org/gems/asciidoctor
|
49
50
|
:uri-what-is-asciidoc: {uri-docs}/what-is-asciidoc
|
50
51
|
:uri-user-manual: {uri-docs}/user-manual
|
@@ -89,6 +90,14 @@ endif::[]
|
|
89
90
|
* {uri-docs}/user-manual[Asciidoctor User Manual]
|
90
91
|
* {uri-docs}/asciidoc-syntax-quick-reference[AsciiDoc Syntax Reference]
|
91
92
|
|
93
|
+
ifdef::status[]
|
94
|
+
image:https://img.shields.io/gem/v/asciidoctor.svg[Latest Release, link={uri-gem}]
|
95
|
+
image:https://img.shields.io/badge/rubydoc.info-{release-version}-blue.svg[library (API) docs,link=https://www.rubydoc.info/gems/asciidoctor/{release-version}]
|
96
|
+
image:https://github.com/asciidoctor/asciidoctor/workflows/CI/badge.svg[Build Status (GitHub Actions),link={uri-repo}/actions]
|
97
|
+
image:https://inch-ci.org/github/asciidoctor/asciidoctor.svg?branch=master[Inline docs,link=https://inch-ci.org/github/asciidoctor/asciidoctor]
|
98
|
+
image:https://img.shields.io/badge/zulip-join_chat-brightgreen.svg[project chat,link=https://asciidoctor.zulipchat.com/]
|
99
|
+
endif::[]
|
100
|
+
|
92
101
|
== スポンサー
|
93
102
|
|
94
103
|
{uri-project}/supporters[スポンサー] のみなさまが, このプロジェクトをサポートし, より良いテクニカルドキュメンテーションの実現にコミットメントをしてくださっていることに感謝します.
|
@@ -261,7 +270,7 @@ gem 'asciidoctor'
|
|
261
270
|
$ bundle
|
262
271
|
|
263
272
|
gemをアップグレードするには, Gemfileで新バージョンを指定し, `bundle` を再び実行してください.
|
264
|
-
`bundle update` を(gemを指定せずに)行うことは推奨 *されません* . 他のgemもアップデートされて思わぬ結果になるかもしれないためです.
|
273
|
+
`bundle update` を(gemを指定せずに)行うことは推奨 *されません* . 他のgemもアップデートされて思わぬ結果になるかもしれないためです.
|
265
274
|
|
266
275
|
== アップグレード
|
267
276
|
|
@@ -425,7 +434,7 @@ Asciidoctorは, コンテンツの執筆と公開を簡単にするために開
|
|
425
434
|
しかしあなたからのフィードバックがなくてはAsciidoctorの開発は進みません!
|
426
435
|
ディスカッションリスト, Twitter, チャットルームを使って, 質問をしたりプロジェクトのさまざまな側面について話し合ったりすることをお勧めします.
|
427
436
|
|
428
|
-
チャット(
|
437
|
+
チャット(Zulip):: {uri-chat}
|
429
438
|
ディスカッションリスト(Nabble):: {uri-discuss}
|
430
439
|
Twitter:: ハッシュタグ https://twitter.com/search?f=tweets&q=%23asciidoctor[#asciidoctor] またはメンション https://twitter.com/asciidoctor[@asciidoctor]
|
431
440
|
|
@@ -443,7 +452,7 @@ GitHub上のAsciidoctorのorganization:: {uri-org}
|
|
443
452
|
|
444
453
|
== ライセンス
|
445
454
|
|
446
|
-
Copyright (C) 2012-
|
455
|
+
Copyright (C) 2012-present Dan Allen, Sarah White, Ryan Waldron, and the individual contributors to Asciidoctor.
|
447
456
|
本ソフトウェアはMITライセンスのもとで使用できます.
|
448
457
|
|
449
458
|
ライセンスの詳細については {uri-license}[LICENSE] ファイルを参照してください.
|