asciidoctor 1.5.8 → 2.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +11 -0
- data/CHANGELOG.adoc +628 -45
- data/LICENSE +2 -1
- data/README-de.adoc +28 -38
- data/README-fr.adoc +30 -43
- data/README-jp.adoc +255 -201
- data/README-zh_CN.adoc +40 -44
- data/README.adoc +170 -143
- data/asciidoctor.gemspec +22 -34
- data/bin/asciidoctor +5 -4
- data/data/locale/attributes-ar.adoc +4 -3
- data/data/locale/attributes-be.adoc +23 -0
- data/data/locale/attributes-bg.adoc +4 -3
- data/data/locale/attributes-ca.adoc +6 -5
- data/data/locale/attributes-cs.adoc +4 -3
- data/data/locale/attributes-da.adoc +6 -5
- data/data/locale/attributes-de.adoc +6 -5
- data/data/locale/attributes-en.adoc +4 -4
- data/data/locale/attributes-es.adoc +6 -5
- data/data/locale/attributes-fa.adoc +4 -3
- data/data/locale/attributes-fi.adoc +4 -3
- data/data/locale/attributes-fr.adoc +8 -7
- data/data/locale/attributes-hu.adoc +4 -3
- data/data/locale/attributes-id.adoc +4 -3
- data/data/locale/attributes-it.adoc +6 -5
- data/data/locale/attributes-ja.adoc +4 -3
- data/data/locale/{attributes-kr.adoc → attributes-ko.adoc} +4 -3
- data/data/locale/attributes-nb.adoc +4 -3
- data/data/locale/attributes-nl.adoc +6 -5
- data/data/locale/attributes-nn.adoc +4 -3
- data/data/locale/attributes-pl.adoc +8 -7
- data/data/locale/attributes-pt.adoc +6 -5
- data/data/locale/attributes-pt_BR.adoc +6 -5
- data/data/locale/attributes-ro.adoc +4 -3
- data/data/locale/attributes-ru.adoc +6 -5
- data/data/locale/attributes-sr.adoc +4 -4
- data/data/locale/attributes-sr_Latn.adoc +4 -4
- data/data/locale/attributes-sv.adoc +4 -4
- data/data/locale/attributes-th.adoc +23 -0
- data/data/locale/attributes-tr.adoc +4 -3
- data/data/locale/attributes-uk.adoc +6 -5
- data/data/locale/attributes-vi.adoc +23 -0
- data/data/locale/attributes-zh_CN.adoc +4 -3
- data/data/locale/attributes-zh_TW.adoc +4 -3
- data/data/reference/syntax.adoc +296 -0
- data/data/stylesheets/asciidoctor-default.css +120 -114
- data/data/stylesheets/coderay-asciidoctor.css +15 -17
- data/lib/asciidoctor/abstract_block.rb +146 -140
- data/lib/asciidoctor/abstract_node.rb +152 -170
- data/lib/asciidoctor/attribute_list.rb +77 -89
- data/lib/asciidoctor/block.rb +29 -28
- data/lib/asciidoctor/callouts.rb +4 -2
- data/lib/asciidoctor/cli/invoker.rb +20 -24
- data/lib/asciidoctor/cli/options.rb +107 -96
- data/lib/asciidoctor/cli.rb +3 -2
- data/lib/asciidoctor/convert.rb +199 -0
- data/lib/asciidoctor/converter/composite.rb +40 -48
- data/lib/asciidoctor/converter/docbook5.rb +627 -644
- data/lib/asciidoctor/converter/html5.rb +1053 -951
- data/lib/asciidoctor/converter/manpage.rb +581 -532
- data/lib/asciidoctor/converter/template.rb +232 -271
- data/lib/asciidoctor/converter.rb +370 -185
- data/lib/asciidoctor/core_ext/float/truncate.rb +20 -0
- data/lib/asciidoctor/core_ext/hash/merge.rb +8 -0
- data/lib/asciidoctor/core_ext/match_data/names.rb +7 -0
- data/lib/asciidoctor/core_ext/nil_or_empty.rb +1 -0
- data/lib/asciidoctor/core_ext/regexp/is_match.rb +4 -2
- data/lib/asciidoctor/core_ext.rb +8 -17
- data/lib/asciidoctor/document.rb +503 -461
- data/lib/asciidoctor/extensions.rb +127 -174
- data/lib/asciidoctor/helpers.rb +184 -107
- data/lib/asciidoctor/inline.rb +9 -12
- data/lib/asciidoctor/list.rb +11 -29
- data/lib/asciidoctor/load.rb +119 -0
- data/lib/asciidoctor/logging.rb +22 -17
- data/lib/asciidoctor/parser.rb +673 -719
- data/lib/asciidoctor/path_resolver.rb +48 -33
- data/lib/asciidoctor/reader.rb +383 -338
- data/lib/asciidoctor/rouge_ext.rb +39 -0
- data/lib/asciidoctor/rx.rb +723 -0
- data/lib/asciidoctor/section.rb +17 -16
- data/lib/asciidoctor/stylesheets.rb +19 -37
- data/lib/asciidoctor/substitutors.rb +926 -1022
- data/lib/asciidoctor/syntax_highlighter/coderay.rb +88 -0
- data/lib/asciidoctor/syntax_highlighter/highlightjs.rb +34 -0
- data/lib/asciidoctor/syntax_highlighter/html_pipeline.rb +10 -0
- data/lib/asciidoctor/syntax_highlighter/prettify.rb +30 -0
- data/lib/asciidoctor/syntax_highlighter/pygments.rb +157 -0
- data/lib/asciidoctor/syntax_highlighter/rouge.rb +143 -0
- data/lib/asciidoctor/syntax_highlighter.rb +253 -0
- data/lib/asciidoctor/table.rb +152 -114
- data/lib/asciidoctor/timings.rb +7 -5
- data/lib/asciidoctor/version.rb +2 -1
- data/lib/asciidoctor/writer.rb +30 -0
- data/lib/asciidoctor.rb +266 -1340
- data/man/asciidoctor.1 +49 -47
- data/man/asciidoctor.adoc +54 -45
- metadata +50 -245
- data/CONTRIBUTING.adoc +0 -185
- data/Gemfile +0 -60
- data/Rakefile +0 -129
- data/bin/asciidoctor-safe +0 -15
- data/features/open_block.feature +0 -92
- data/features/pass_block.feature +0 -66
- data/features/step_definitions.rb +0 -49
- data/features/text_formatting.feature +0 -57
- data/features/xref.feature +0 -1039
- data/lib/asciidoctor/converter/base.rb +0 -59
- data/lib/asciidoctor/converter/docbook45.rb +0 -93
- data/lib/asciidoctor/converter/factory.rb +0 -226
- data/lib/asciidoctor/core_ext/1.8.7/base64/strict_encode64.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/concurrent/hash.rb +0 -5
- data/lib/asciidoctor/core_ext/1.8.7/hash/key.rb +0 -4
- data/lib/asciidoctor/core_ext/1.8.7/io/binread.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/io/write.rb +0 -5
- data/lib/asciidoctor/core_ext/1.8.7/string/chr.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/string/limit_bytesize.rb +0 -29
- data/lib/asciidoctor/core_ext/1.8.7/symbol/empty.rb +0 -6
- data/lib/asciidoctor/core_ext/1.8.7/symbol/length.rb +0 -6
- data/lib/asciidoctor/core_ext/string/limit_bytesize.rb +0 -10
- data/test/api_test.rb +0 -1240
- data/test/attribute_list_test.rb +0 -242
- data/test/attributes_test.rb +0 -1623
- data/test/blocks_test.rb +0 -3870
- data/test/converter_test.rb +0 -470
- data/test/document_test.rb +0 -1853
- data/test/extensions_test.rb +0 -1560
- data/test/fixtures/asciidoc_index.txt +0 -521
- data/test/fixtures/basic-docinfo-footer.html +0 -6
- data/test/fixtures/basic-docinfo-footer.xml +0 -8
- data/test/fixtures/basic-docinfo.html +0 -1
- data/test/fixtures/basic-docinfo.xml +0 -4
- data/test/fixtures/basic.asciidoc +0 -5
- data/test/fixtures/chapter-a.adoc +0 -3
- data/test/fixtures/child-include.adoc +0 -5
- data/test/fixtures/circle.svg +0 -9
- data/test/fixtures/custom-backends/erb/html5/block_paragraph.html.erb +0 -6
- data/test/fixtures/custom-backends/haml/docbook45/block_paragraph.xml.haml +0 -6
- data/test/fixtures/custom-backends/haml/html5/block_paragraph.html.haml +0 -3
- data/test/fixtures/custom-backends/haml/html5/block_sidebar.html.haml +0 -5
- data/test/fixtures/custom-backends/haml/html5-tweaks/block_paragraph.html.haml +0 -1
- data/test/fixtures/custom-backends/slim/docbook45/block_paragraph.xml.slim +0 -6
- data/test/fixtures/custom-backends/slim/html5/block_paragraph.html.slim +0 -3
- data/test/fixtures/custom-backends/slim/html5/block_sidebar.html.slim +0 -5
- data/test/fixtures/custom-docinfodir/basic-docinfo.html +0 -1
- data/test/fixtures/custom-docinfodir/docinfo.html +0 -1
- data/test/fixtures/docinfo-footer.html +0 -1
- data/test/fixtures/docinfo-footer.xml +0 -9
- data/test/fixtures/docinfo.html +0 -1
- data/test/fixtures/docinfo.xml +0 -3
- data/test/fixtures/doctime-localtime.adoc +0 -2
- data/test/fixtures/dot.gif +0 -0
- data/test/fixtures/encoding.asciidoc +0 -13
- data/test/fixtures/file-with-missing-include.adoc +0 -1
- data/test/fixtures/grandchild-include.adoc +0 -3
- data/test/fixtures/hello-asciidoctor.pdf +0 -69
- data/test/fixtures/include-file.asciidoc +0 -24
- data/test/fixtures/include-file.jsx +0 -8
- data/test/fixtures/include-file.ml +0 -3
- data/test/fixtures/include-file.xml +0 -5
- data/test/fixtures/lists.adoc +0 -96
- data/test/fixtures/master.adoc +0 -5
- data/test/fixtures/mismatched-end-tag.adoc +0 -7
- data/test/fixtures/other-chapters.adoc +0 -11
- data/test/fixtures/outer-include.adoc +0 -5
- data/test/fixtures/parent-include-restricted.adoc +0 -5
- data/test/fixtures/parent-include.adoc +0 -5
- data/test/fixtures/sample.asciidoc +0 -30
- data/test/fixtures/section-a.adoc +0 -4
- data/test/fixtures/stylesheets/custom.css +0 -3
- data/test/fixtures/subdir/index.adoc +0 -3
- data/test/fixtures/subdir/inner-include.adoc +0 -3
- data/test/fixtures/subdir/middle-include.adoc +0 -5
- data/test/fixtures/subs-docinfo.html +0 -2
- data/test/fixtures/subs.adoc +0 -6
- data/test/fixtures/tagged-class-enclosed.rb +0 -25
- data/test/fixtures/tagged-class.rb +0 -23
- data/test/fixtures/tip.gif +0 -0
- data/test/fixtures/unclosed-tag.adoc +0 -3
- data/test/fixtures/unexpected-end-tag.adoc +0 -4
- data/test/invoker_test.rb +0 -745
- data/test/links_test.rb +0 -855
- data/test/lists_test.rb +0 -5151
- data/test/logger_test.rb +0 -211
- data/test/manpage_test.rb +0 -660
- data/test/options_test.rb +0 -262
- data/test/paragraphs_test.rb +0 -562
- data/test/parser_test.rb +0 -742
- data/test/paths_test.rb +0 -395
- data/test/preamble_test.rb +0 -173
- data/test/reader_test.rb +0 -2161
- data/test/sections_test.rb +0 -3575
- data/test/substitutions_test.rb +0 -2066
- data/test/tables_test.rb +0 -2036
- data/test/test_helper.rb +0 -447
- data/test/text_test.rb +0 -309
@@ -1,13 +0,0 @@
|
|
1
|
-
Gregory Romé has written an AsciiDoc plugin for the Redmine project management application.
|
2
|
-
|
3
|
-
https://github.com/foo-users/foo
|
4
|
-
へと `vicmd` キーマップを足してみている試み、
|
5
|
-
アニメーションgifです。
|
6
|
-
|
7
|
-
tag::romé[]
|
8
|
-
Gregory Romé has written an AsciiDoc plugin for the Redmine project management application.
|
9
|
-
end::romé[]
|
10
|
-
|
11
|
-
== Überschrift
|
12
|
-
|
13
|
-
* Codierungen sind verrückt auf älteren Versionen von Ruby
|
@@ -1 +0,0 @@
|
|
1
|
-
include::no-such-file.adoc[]
|
@@ -1,69 +0,0 @@
|
|
1
|
-
%PDF-1.3
|
2
|
-
%����
|
3
|
-
1 0 obj
|
4
|
-
<< /Creator <feff0050007200610077006e>
|
5
|
-
/Producer <feff0050007200610077006e>
|
6
|
-
>>
|
7
|
-
endobj
|
8
|
-
2 0 obj
|
9
|
-
<< /Type /Catalog
|
10
|
-
/Pages 3 0 R
|
11
|
-
>>
|
12
|
-
endobj
|
13
|
-
3 0 obj
|
14
|
-
<< /Type /Pages
|
15
|
-
/Count 1
|
16
|
-
/Kids [5 0 R]
|
17
|
-
>>
|
18
|
-
endobj
|
19
|
-
4 0 obj
|
20
|
-
<< /Length 92
|
21
|
-
>>
|
22
|
-
stream
|
23
|
-
q
|
24
|
-
|
25
|
-
BT
|
26
|
-
36.0 747.384 Td
|
27
|
-
/F1.0 12 Tf
|
28
|
-
[<48656c6c6f> 40 <2c204173636969646f63746f7221>] TJ
|
29
|
-
ET
|
30
|
-
|
31
|
-
Q
|
32
|
-
|
33
|
-
endstream
|
34
|
-
endobj
|
35
|
-
5 0 obj
|
36
|
-
<< /Type /Page
|
37
|
-
/Parent 3 0 R
|
38
|
-
/MediaBox [0 0 612.0 792.0]
|
39
|
-
/Contents 4 0 R
|
40
|
-
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
41
|
-
/Font << /F1.0 6 0 R
|
42
|
-
>>
|
43
|
-
>>
|
44
|
-
>>
|
45
|
-
endobj
|
46
|
-
6 0 obj
|
47
|
-
<< /Type /Font
|
48
|
-
/Subtype /Type1
|
49
|
-
/BaseFont /Helvetica
|
50
|
-
/Encoding /WinAnsiEncoding
|
51
|
-
>>
|
52
|
-
endobj
|
53
|
-
xref
|
54
|
-
0 7
|
55
|
-
0000000000 65535 f
|
56
|
-
0000000015 00000 n
|
57
|
-
0000000109 00000 n
|
58
|
-
0000000158 00000 n
|
59
|
-
0000000215 00000 n
|
60
|
-
0000000357 00000 n
|
61
|
-
0000000535 00000 n
|
62
|
-
trailer
|
63
|
-
<< /Size 7
|
64
|
-
/Root 2 0 R
|
65
|
-
/Info 1 0 R
|
66
|
-
>>
|
67
|
-
startxref
|
68
|
-
632
|
69
|
-
%%EOF
|
@@ -1,24 +0,0 @@
|
|
1
|
-
first line of included content
|
2
|
-
second line of included content
|
3
|
-
third line of included content
|
4
|
-
fourth line of included content
|
5
|
-
fifth line of included content
|
6
|
-
sixth line of included content
|
7
|
-
seventh line of included content
|
8
|
-
eighth line of included content
|
9
|
-
|
10
|
-
// tag::snippet[]
|
11
|
-
// tag::snippetA[]
|
12
|
-
snippetA content
|
13
|
-
// end::snippetA[]
|
14
|
-
|
15
|
-
non-tagged content
|
16
|
-
|
17
|
-
// tag::snippetB[]
|
18
|
-
snippetB content
|
19
|
-
// end::snippetB[]
|
20
|
-
// end::snippet[]
|
21
|
-
|
22
|
-
more non-tagged content
|
23
|
-
|
24
|
-
last line of included content
|
data/test/fixtures/lists.adoc
DELETED
@@ -1,96 +0,0 @@
|
|
1
|
-
= Document Title
|
2
|
-
Doc Writer <thedoc@asciidoctor.org>
|
3
|
-
|
4
|
-
Preamble paragraph.
|
5
|
-
|
6
|
-
NOTE: This is test, only a test.
|
7
|
-
|
8
|
-
== Lists
|
9
|
-
|
10
|
-
.Unordered, basic
|
11
|
-
* Edgar Allen Poe
|
12
|
-
* Sheri S. Tepper
|
13
|
-
* Bill Bryson
|
14
|
-
|
15
|
-
.Unordered, max nesting
|
16
|
-
* level 1
|
17
|
-
** level 2
|
18
|
-
*** level 3
|
19
|
-
**** level 4
|
20
|
-
***** level 5
|
21
|
-
* level 1
|
22
|
-
|
23
|
-
.Checklist
|
24
|
-
- [*] checked
|
25
|
-
- [x] also checked
|
26
|
-
- [ ] not checked
|
27
|
-
- normal list item
|
28
|
-
|
29
|
-
.Ordered, basic
|
30
|
-
. Step 1
|
31
|
-
. Step 2
|
32
|
-
. Step 3
|
33
|
-
|
34
|
-
.Ordered, nested
|
35
|
-
. Step 1
|
36
|
-
. Step 2
|
37
|
-
.. Step 2a
|
38
|
-
.. Step 2b
|
39
|
-
. Step 3
|
40
|
-
|
41
|
-
.Ordered, max nesting
|
42
|
-
. level 1
|
43
|
-
.. level 2
|
44
|
-
... level 3
|
45
|
-
.... level 4
|
46
|
-
..... level 5
|
47
|
-
. level 1
|
48
|
-
|
49
|
-
.Labeled, single-line
|
50
|
-
first term:: definition of first term
|
51
|
-
section term:: definition of second term
|
52
|
-
|
53
|
-
.Labeled, multi-line
|
54
|
-
first term::
|
55
|
-
definition of first term
|
56
|
-
second term::
|
57
|
-
definition of second term
|
58
|
-
|
59
|
-
.Q&A
|
60
|
-
[qanda]
|
61
|
-
What is Asciidoctor?::
|
62
|
-
An implementation of the AsciiDoc processor in Ruby.
|
63
|
-
What is the answer to the Ultimate Question?:: 42
|
64
|
-
|
65
|
-
.Mixed
|
66
|
-
Operating Systems::
|
67
|
-
Linux:::
|
68
|
-
. Fedora
|
69
|
-
* Desktop
|
70
|
-
. Ubuntu
|
71
|
-
* Desktop
|
72
|
-
* Server
|
73
|
-
BSD:::
|
74
|
-
. FreeBSD
|
75
|
-
. NetBSD
|
76
|
-
|
77
|
-
Cloud Providers::
|
78
|
-
PaaS:::
|
79
|
-
. OpenShift
|
80
|
-
. CloudBees
|
81
|
-
IaaS:::
|
82
|
-
. Amazon EC2
|
83
|
-
. Rackspace
|
84
|
-
|
85
|
-
.Unordered, complex
|
86
|
-
* level 1
|
87
|
-
** level 2
|
88
|
-
*** level 3
|
89
|
-
This is a new line inside an unordered list using {plus} symbol.
|
90
|
-
We can even force content to start on a separate line... +
|
91
|
-
Amazing, isn't it?
|
92
|
-
**** level 4
|
93
|
-
+
|
94
|
-
The {plus} symbol is on a new line.
|
95
|
-
|
96
|
-
***** level 5
|
data/test/fixtures/master.adoc
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
Document Title
|
2
|
-
==============
|
3
|
-
Doc Writer <thedoc@asciidoctor.org>
|
4
|
-
:idprefix: id_
|
5
|
-
|
6
|
-
Preamble paragraph.
|
7
|
-
|
8
|
-
NOTE: This is test, only a test.
|
9
|
-
|
10
|
-
== Section A
|
11
|
-
|
12
|
-
*Section A* paragraph.
|
13
|
-
|
14
|
-
=== Section A Subsection
|
15
|
-
|
16
|
-
*Section A* 'subsection' paragraph.
|
17
|
-
|
18
|
-
== Section B
|
19
|
-
|
20
|
-
*Section B* paragraph.
|
21
|
-
|
22
|
-
|===
|
23
|
-
|a |b |c
|
24
|
-
|1 |2 |3
|
25
|
-
|===
|
26
|
-
|
27
|
-
.Section B list
|
28
|
-
* Item 1
|
29
|
-
* Item 2
|
30
|
-
* Item 3
|
data/test/fixtures/subs.adoc
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#tag::all[]
|
2
|
-
class Dog
|
3
|
-
#tag::init[]
|
4
|
-
def initialize breed
|
5
|
-
@breed = breed
|
6
|
-
end
|
7
|
-
#end::init[]
|
8
|
-
#tag::bark[]
|
9
|
-
|
10
|
-
def bark
|
11
|
-
#tag::bark-beagle[]
|
12
|
-
if @breed == 'beagle'
|
13
|
-
'woof woof woof woof woof'
|
14
|
-
#end::bark-beagle[]
|
15
|
-
#tag::bark-other[]
|
16
|
-
else
|
17
|
-
'woof woof'
|
18
|
-
#end::bark-other[]
|
19
|
-
#tag::bark-all[]
|
20
|
-
end
|
21
|
-
#end::bark-all[]
|
22
|
-
end
|
23
|
-
#end::bark[]
|
24
|
-
end
|
25
|
-
#end::all[]
|
@@ -1,23 +0,0 @@
|
|
1
|
-
class Dog
|
2
|
-
#tag::init[]
|
3
|
-
def initialize breed
|
4
|
-
@breed = breed
|
5
|
-
end
|
6
|
-
#end::init[]
|
7
|
-
#tag::bark[]
|
8
|
-
|
9
|
-
def bark
|
10
|
-
#tag::bark-beagle[]
|
11
|
-
if @breed == 'beagle'
|
12
|
-
'woof woof woof woof woof'
|
13
|
-
#end::bark-beagle[]
|
14
|
-
#tag::bark-other[]
|
15
|
-
else
|
16
|
-
'woof woof'
|
17
|
-
#end::bark-other[]
|
18
|
-
#tag::bark-all[]
|
19
|
-
end
|
20
|
-
#end::bark-all[]
|
21
|
-
end
|
22
|
-
#end::bark[]
|
23
|
-
end
|
data/test/fixtures/tip.gif
DELETED
Binary file
|