asciidoctor 2.0.10 → 2.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.adoc +211 -22
- data/LICENSE +1 -1
- data/README-de.adoc +12 -13
- data/README-fr.adoc +11 -15
- data/README-jp.adoc +9 -17
- data/README-zh_CN.adoc +17 -18
- data/README.adoc +140 -132
- data/asciidoctor.gemspec +6 -6
- 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 +4 -4
- 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 +6 -5
- 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-tr.adoc +4 -3
- data/data/locale/attributes-uk.adoc +6 -5
- data/data/locale/attributes-zh_CN.adoc +4 -3
- data/data/locale/attributes-zh_TW.adoc +4 -3
- data/data/reference/syntax.adoc +14 -7
- data/data/stylesheets/asciidoctor-default.css +27 -28
- data/lib/asciidoctor.rb +38 -12
- data/lib/asciidoctor/abstract_block.rb +9 -4
- data/lib/asciidoctor/abstract_node.rb +16 -6
- data/lib/asciidoctor/attribute_list.rb +64 -72
- data/lib/asciidoctor/cli/invoker.rb +2 -0
- data/lib/asciidoctor/cli/options.rb +10 -9
- data/lib/asciidoctor/convert.rb +167 -162
- data/lib/asciidoctor/converter.rb +13 -12
- data/lib/asciidoctor/converter/docbook5.rb +29 -12
- data/lib/asciidoctor/converter/html5.rb +69 -46
- data/lib/asciidoctor/converter/manpage.rb +68 -49
- data/lib/asciidoctor/converter/template.rb +3 -0
- data/lib/asciidoctor/document.rb +43 -50
- data/lib/asciidoctor/extensions.rb +2 -4
- data/lib/asciidoctor/helpers.rb +20 -15
- data/lib/asciidoctor/load.rb +102 -101
- data/lib/asciidoctor/parser.rb +40 -32
- data/lib/asciidoctor/path_resolver.rb +14 -12
- data/lib/asciidoctor/reader.rb +22 -13
- data/lib/asciidoctor/rx.rb +7 -6
- data/lib/asciidoctor/substitutors.rb +78 -57
- data/lib/asciidoctor/syntax_highlighter.rb +8 -5
- data/lib/asciidoctor/syntax_highlighter/coderay.rb +1 -1
- data/lib/asciidoctor/syntax_highlighter/highlightjs.rb +12 -4
- data/lib/asciidoctor/syntax_highlighter/prettify.rb +7 -4
- data/lib/asciidoctor/syntax_highlighter/pygments.rb +6 -7
- data/lib/asciidoctor/syntax_highlighter/rouge.rb +33 -19
- data/lib/asciidoctor/table.rb +52 -23
- data/lib/asciidoctor/version.rb +1 -1
- data/man/asciidoctor.1 +8 -8
- data/man/asciidoctor.adoc +4 -4
- metadata +16 -15
data/asciidoctor.gemspec
CHANGED
@@ -34,21 +34,21 @@ Gem::Specification.new do |s|
|
|
34
34
|
#s.test_files = files.grep %r/^(?:features|test)\/.+$/
|
35
35
|
|
36
36
|
# asciimath is needed for testing AsciiMath in DocBook backend
|
37
|
-
s.add_development_dependency 'asciimath', '~>
|
37
|
+
s.add_development_dependency 'asciimath', '~> 2.0.0'
|
38
38
|
# coderay is needed for testing syntax highlighting
|
39
39
|
s.add_development_dependency 'coderay', '~> 1.1.0'
|
40
40
|
# concurrent-ruby, haml, slim, and tilt are needed for testing custom templates
|
41
41
|
s.add_development_dependency 'concurrent-ruby', '~> 1.1.0'
|
42
42
|
s.add_development_dependency 'cucumber', '~> 3.1.0'
|
43
|
-
#
|
44
|
-
s.add_development_dependency '
|
45
|
-
s.add_development_dependency 'haml', '~> 5.
|
43
|
+
# erubi is needed for testing alternate eRuby impls
|
44
|
+
s.add_development_dependency 'erubi', '~> 1.10.0'
|
45
|
+
s.add_development_dependency 'haml', '~> 5.2.0'
|
46
46
|
s.add_development_dependency 'minitest', '~> 5.11.0'
|
47
47
|
s.add_development_dependency 'nokogiri', '~> 1.10.0'
|
48
48
|
s.add_development_dependency 'rake', '~> 12.3.0'
|
49
49
|
# Asciidoctor supports Rouge >= 2
|
50
|
-
s.add_development_dependency 'rouge', '~> 3.
|
50
|
+
s.add_development_dependency 'rouge', '~> 3.26.0'
|
51
51
|
s.add_development_dependency 'rspec-expectations', '~> 3.8.0'
|
52
|
-
s.add_development_dependency 'slim', '~> 4.
|
52
|
+
s.add_development_dependency 'slim', '~> 4.1.0'
|
53
53
|
s.add_development_dependency 'tilt', '~> 2.0.0'
|
54
54
|
end
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: ملحق
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: تنبيه
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: مثال
|
8
8
|
:figure-caption: الشكل
|
9
9
|
:important-caption: مهم
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: قائمة]
|
12
12
|
ifdef::manname-title[:manname-title: اسم]
|
13
13
|
:note-caption: ملاحظة
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: تمهيد]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: جدول
|
@@ -0,0 +1,23 @@
|
|
1
|
+
// Belarusian translation, courtesy of Dexter Morganov <dexter.morganov@gmail.com>
|
2
|
+
:appendix-caption: Дадатак
|
3
|
+
:appendix-refsig: {appendix-caption}
|
4
|
+
:caution-caption: Увага
|
5
|
+
:chapter-signifier: Глава
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
|
+
:example-caption: Прыклад
|
8
|
+
:figure-caption: Малюнак
|
9
|
+
:important-caption: Важна
|
10
|
+
:last-update-label: Апошняе абнаўленне
|
11
|
+
ifdef::listing-caption[:listing-caption: Лістынг]
|
12
|
+
ifdef::manname-title[:manname-title: Назва]
|
13
|
+
:note-caption: Заўвага
|
14
|
+
:part-signifier: Частка
|
15
|
+
:part-refsig: {part-signifier}
|
16
|
+
ifdef::preface-title[:preface-title: Прадмова]
|
17
|
+
:section-refsig: Раздзел
|
18
|
+
:table-caption: Табліца
|
19
|
+
:tip-caption: Падказка
|
20
|
+
:toc-title: Змест
|
21
|
+
:untitled-label: Без назвы
|
22
|
+
:version-label: Версія
|
23
|
+
:warning-caption: Папярэджанне
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Приложение
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Внимание
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Пример
|
8
8
|
:figure-caption: Фигура
|
9
9
|
:important-caption: Важно
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Листинг]
|
12
12
|
ifdef::manname-title[:manname-title: Име]
|
13
13
|
:note-caption: Забележка
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Предговор]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Таблица
|
@@ -1,9 +1,9 @@
|
|
1
1
|
// Catalan translation, courtesy of Abel Salgado Romero <abelromero@gmail.com> and Alex Soto
|
2
|
-
:appendix-caption:
|
2
|
+
:appendix-caption: Apèndix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Atenció
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítol
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemple
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Important
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Llista]
|
12
12
|
ifdef::manname-title[:manname-title: Nom]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Part
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefaci]
|
16
|
-
|
17
|
+
:section-refsig: Secció
|
17
18
|
:table-caption: Taula
|
18
19
|
:tip-caption: Suggeriment
|
19
20
|
:toc-title: Índex
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Příloha
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Upozornění
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapitola
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Příklad
|
8
8
|
:figure-caption: Obrázek
|
9
9
|
:important-caption: Důležité
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Seznam]
|
12
12
|
ifdef::manname-title[:manname-title: Název]
|
13
13
|
:note-caption: Poznámka
|
14
|
-
:part-
|
14
|
+
:part-signifier: Část
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Úvod]
|
16
17
|
:section-refsig: Oddíl
|
17
18
|
:table-caption: Tabulka
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>
|
1
|
+
// Danish translation, courtesy of Max Rydahl Andersen <manderse@redhat.com>, with updates from Morten Høfft <mhoefft@gbif.org>
|
2
2
|
:appendix-caption: Appendix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Forsigtig
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Kapitel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Eksempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Vigtig
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: List]
|
12
12
|
ifdef::manname-title[:manname-title: Navn]
|
13
13
|
:note-caption: Notat
|
14
|
-
|
14
|
+
:part-signifier: Del
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Forord]
|
16
|
-
|
17
|
+
:section-refsig: Sektion
|
17
18
|
:table-caption: Tabel
|
18
19
|
:tip-caption: Tips
|
19
20
|
:toc-title: Indholdsfortegnelse
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Anhang
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Achtung
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapitel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Beispiel
|
8
8
|
:figure-caption: Abbildung
|
9
9
|
:important-caption: Wichtig
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Bezeichnung]
|
13
13
|
:note-caption: Anmerkung
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Teil
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Vorwort]
|
17
17
|
:section-refsig: Abschnitt
|
18
18
|
:table-caption: Tabelle
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Appendix
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Caution
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Chapter
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Example
|
8
8
|
:figure-caption: Figure
|
9
9
|
:important-caption: Important
|
@@ -11,8 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listing]
|
12
12
|
ifdef::manname-title[:manname-title: Name]
|
13
13
|
:note-caption: Note
|
14
|
-
:part-
|
15
|
-
:part-refsig: {part-
|
14
|
+
:part-signifier: Part
|
15
|
+
:part-refsig: {part-signifier}
|
16
16
|
ifdef::preface-title[:preface-title: Preface]
|
17
17
|
:section-refsig: Section
|
18
18
|
:table-caption: Table
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com>
|
1
|
+
// Spanish translation, courtesy of Eddú Meléndez <eddu.melendez@gmail.com> with updates from Fede Mendez <federicomh@gmail.com>
|
2
2
|
:appendix-caption: Apéndice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Precaución
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Capítulo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Ejemplo
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lista]
|
12
12
|
ifdef::manname-title[:manname-title: Nombre]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefacio]
|
16
|
-
|
17
|
+
:section-refsig: Sección
|
17
18
|
:table-caption: Tabla
|
18
19
|
:tip-caption: Sugerencia
|
19
20
|
:toc-title: Tabla de Contenido
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: پیوست
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: گوشزد
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: نمونه
|
8
8
|
:figure-caption: نمودار
|
9
9
|
:important-caption: مهم
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: فهرست]
|
12
12
|
ifdef::manname-title[:manname-title: نام]
|
13
13
|
:note-caption: یادداشت
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: پیشگفتار]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: جدول
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Liitteet
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Huom
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Esimerkki
|
8
8
|
:figure-caption: Kuvio
|
9
9
|
:important-caption: Tärkeää
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Listaus]
|
12
12
|
ifdef::manname-title[:manname-title: Nimi]
|
13
13
|
:note-caption: Huomio
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Esipuhe]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Taulukko
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com>
|
1
|
+
// French translation, courtesy of Nicolas Comet <nicolas.comet@gmail.com> with updates from Maheva Bagard Laursen <mblaursen@gbif.org>
|
2
2
|
:appendix-caption: Annexe
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Avertissement
|
5
|
-
|
6
|
-
|
5
|
+
:chapter-signifier: Chapitre
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Exemple
|
8
8
|
:figure-caption: Figure
|
9
9
|
:important-caption: Important
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Liste]
|
12
12
|
ifdef::manname-title[:manname-title: Nom]
|
13
13
|
:note-caption: Note
|
14
|
-
|
14
|
+
:part-signifier: Partie
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Préface]
|
16
|
-
|
17
|
+
:section-refsig: Section
|
17
18
|
:table-caption: Tableau
|
18
19
|
:tip-caption: Astuce
|
19
20
|
:toc-title: Table des matières
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: függelék
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Figyelmeztetés
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Példa
|
8
8
|
:figure-caption: Ábra
|
9
9
|
:important-caption: Fontos
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Lista]
|
12
12
|
ifdef::manname-title[:manname-title: Név]
|
13
13
|
:note-caption: Megjegyzés
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Előszó]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Táblázat
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Lampiran
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Perhatian
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Bab
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Contoh
|
8
8
|
:figure-caption: Gambar
|
9
9
|
:important-caption: Penting
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Daftar]
|
12
12
|
ifdef::manname-title[:manname-title: Nama]
|
13
13
|
:note-caption: Catatan
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
//ifdef::preface-title[:preface-title: ???]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabel
|
@@ -1,9 +1,9 @@
|
|
1
|
-
// Italian translation, courtesy of Marco Ciampa <ciampix@
|
1
|
+
// Italian translation, courtesy of Marco Ciampa <ciampix@posteo.net>
|
2
2
|
:appendix-caption: Appendice
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: Attenzione
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Capitolo
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Esempio
|
8
8
|
:figure-caption: Figura
|
9
9
|
:important-caption: Importante
|
@@ -11,9 +11,10 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Elenco]
|
12
12
|
ifdef::manname-title[:manname-title: Nome]
|
13
13
|
:note-caption: Nota
|
14
|
-
|
14
|
+
:part-signifier: Parte
|
15
|
+
:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Prefazione]
|
16
|
-
|
17
|
+
:section-refsig: Sezione
|
17
18
|
:table-caption: Tabella
|
18
19
|
:tip-caption: Suggerimento
|
19
20
|
:toc-title: Indice
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: 付録
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: 注意
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: 例
|
8
8
|
:figure-caption: 図
|
9
9
|
:important-caption: 重要
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: リスト]
|
12
12
|
ifdef::manname-title[:manname-title: 名前]
|
13
13
|
:note-caption: 注記
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: まえがき]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: 表
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: 부록
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: 주의
|
5
|
-
//:chapter-
|
6
|
-
//:chapter-refsig: {chapter-
|
5
|
+
//:chapter-signifier: ???
|
6
|
+
//:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: 예시
|
8
8
|
:figure-caption: 그림
|
9
9
|
:important-caption: 중요
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: 목록]
|
12
12
|
ifdef::manname-title[:manname-title: 이름]
|
13
13
|
:note-caption: 노트
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: 머리말]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: 표
|
@@ -2,8 +2,8 @@
|
|
2
2
|
:appendix-caption: Vedlegg
|
3
3
|
:appendix-refsig: {appendix-caption}
|
4
4
|
:caution-caption: OBS
|
5
|
-
:chapter-
|
6
|
-
:chapter-refsig: {chapter-
|
5
|
+
:chapter-signifier: Kapittel
|
6
|
+
:chapter-refsig: {chapter-signifier}
|
7
7
|
:example-caption: Eksempel
|
8
8
|
:figure-caption: Figur
|
9
9
|
:important-caption: Viktig
|
@@ -11,7 +11,8 @@
|
|
11
11
|
ifdef::listing-caption[:listing-caption: Programkode]
|
12
12
|
ifdef::manname-title[:manname-title: Navn]
|
13
13
|
:note-caption: Merk
|
14
|
-
//:part-
|
14
|
+
//:part-signifier: ???
|
15
|
+
//:part-refsig: {part-signifier}
|
15
16
|
ifdef::preface-title[:preface-title: Forord]
|
16
17
|
//:section-refsig: ???
|
17
18
|
:table-caption: Tabell
|