mizuho 0.9.6 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/README.markdown +4 -2
  2. data/Rakefile +0 -37
  3. data/asciidoc/BUGS +9 -18
  4. data/asciidoc/BUGS.txt +5 -14
  5. data/asciidoc/CHANGELOG +1433 -266
  6. data/asciidoc/CHANGELOG.txt +2821 -1810
  7. data/asciidoc/COPYING +339 -339
  8. data/asciidoc/COPYRIGHT +18 -18
  9. data/asciidoc/INSTALL +189 -30
  10. data/asciidoc/INSTALL.txt +175 -19
  11. data/asciidoc/MANIFEST +88 -0
  12. data/asciidoc/Makefile.in +29 -13
  13. data/asciidoc/README +16 -17
  14. data/asciidoc/README.txt +35 -36
  15. data/asciidoc/a2x.py +902 -0
  16. data/asciidoc/asciidoc.conf +610 -455
  17. data/asciidoc/asciidoc.py +1965 -1061
  18. data/asciidoc/asciidocapi.py +257 -0
  19. data/asciidoc/common.aap +2 -2
  20. data/asciidoc/configure +1170 -1023
  21. data/asciidoc/configure.ac +1 -1
  22. data/asciidoc/dblatex/asciidoc-dblatex.xsl +42 -0
  23. data/asciidoc/doc/a2x.1 +559 -102
  24. data/asciidoc/doc/a2x.1.txt +233 -91
  25. data/asciidoc/doc/article-docinfo.xml +87 -0
  26. data/asciidoc/doc/article.pdf +0 -0
  27. data/asciidoc/doc/article.txt +139 -122
  28. data/asciidoc/doc/asciidoc.1 +157 -46
  29. data/asciidoc/doc/asciidoc.1.txt +171 -118
  30. data/asciidoc/doc/asciidoc.conf +7 -8
  31. data/asciidoc/doc/asciidoc.dict +960 -635
  32. data/asciidoc/doc/asciidoc.txt +2335 -1464
  33. data/asciidoc/doc/asciidocapi.txt +189 -0
  34. data/asciidoc/doc/asciimathml.txt +14 -17
  35. data/asciidoc/doc/book-multi.txt +181 -155
  36. data/asciidoc/doc/book.epub +0 -0
  37. data/asciidoc/doc/book.txt +156 -131
  38. data/asciidoc/doc/customers.csv +18 -18
  39. data/asciidoc/doc/epub-notes.txt +210 -0
  40. data/asciidoc/doc/faq.txt +1122 -547
  41. data/asciidoc/doc/latex-backend.txt +192 -191
  42. data/asciidoc/doc/latex-bugs.txt +134 -0
  43. data/asciidoc/doc/latex-filter.pdf +0 -0
  44. data/asciidoc/doc/latex-filter.txt +196 -0
  45. data/asciidoc/doc/latexmath.txt +13 -136
  46. data/asciidoc/doc/latexmathml.txt +2 -2
  47. data/asciidoc/doc/main.aap +233 -297
  48. data/asciidoc/doc/music-filter.pdf +0 -0
  49. data/asciidoc/doc/music-filter.txt +55 -65
  50. data/asciidoc/doc/publishing-ebooks-with-asciidoc.txt +398 -0
  51. data/asciidoc/doc/slidy-example.txt +167 -0
  52. data/asciidoc/doc/slidy.txt +113 -0
  53. data/asciidoc/doc/source-highlight-filter.pdf +0 -0
  54. data/asciidoc/doc/source-highlight-filter.txt +45 -20
  55. data/asciidoc/doc/testasciidoc.txt +231 -0
  56. data/asciidoc/docbook-xsl/asciidoc-docbook-xsl.txt +30 -8
  57. data/asciidoc/docbook-xsl/chunked.xsl +17 -19
  58. data/asciidoc/docbook-xsl/common.xsl +106 -67
  59. data/asciidoc/docbook-xsl/epub.xsl +35 -0
  60. data/asciidoc/docbook-xsl/fo.xsl +3 -0
  61. data/asciidoc/docbook-xsl/htmlhelp.xsl +16 -17
  62. data/asciidoc/docbook-xsl/manpage.xsl +31 -31
  63. data/asciidoc/docbook-xsl/text.xsl +6 -1
  64. data/asciidoc/docbook-xsl/xhtml.xsl +14 -14
  65. data/asciidoc/docbook45.conf +759 -0
  66. data/asciidoc/filters/code/code-filter-readme.txt +37 -37
  67. data/asciidoc/filters/code/code-filter-test.txt +15 -15
  68. data/asciidoc/filters/code/code-filter.conf +8 -8
  69. data/asciidoc/filters/graphviz/asciidoc-graphviz-sample.txt +104 -64
  70. data/asciidoc/filters/graphviz/graphviz-filter.conf +20 -16
  71. data/asciidoc/filters/graphviz/graphviz2png.py +54 -39
  72. data/asciidoc/filters/latex/latex-filter.conf +18 -0
  73. data/asciidoc/filters/latex/latex2png.py +216 -0
  74. data/asciidoc/filters/music/music-filter.conf +8 -17
  75. data/asciidoc/filters/music/music2png.py +40 -32
  76. data/asciidoc/filters/source/source-highlight-filter.conf +40 -34
  77. data/asciidoc/help.conf +261 -96
  78. data/asciidoc/html4.conf +505 -460
  79. data/asciidoc/html5.conf +686 -0
  80. data/asciidoc/images/highlighter.png +0 -0
  81. data/asciidoc/images/icons/caution.png +0 -0
  82. data/asciidoc/images/icons/example.png +0 -0
  83. data/asciidoc/images/icons/important.png +0 -0
  84. data/asciidoc/images/icons/note.png +0 -0
  85. data/asciidoc/images/icons/tip.png +0 -0
  86. data/asciidoc/images/icons/warning.png +0 -0
  87. data/asciidoc/images/smallnew.png +0 -0
  88. data/asciidoc/javascripts/asciidoc.js +189 -0
  89. data/asciidoc/javascripts/slidy.js +2845 -0
  90. data/asciidoc/javascripts/toc.js +8 -0
  91. data/asciidoc/lang-de.conf +57 -0
  92. data/asciidoc/lang-en.conf +54 -0
  93. data/asciidoc/lang-es.conf +49 -9
  94. data/asciidoc/lang-fr.conf +59 -0
  95. data/asciidoc/lang-hu.conf +55 -0
  96. data/asciidoc/lang-it.conf +55 -0
  97. data/asciidoc/lang-nl.conf +57 -0
  98. data/asciidoc/lang-pt-BR.conf +56 -0
  99. data/asciidoc/lang-ru.conf +60 -0
  100. data/asciidoc/lang-uk.conf +60 -0
  101. data/asciidoc/latex.conf +700 -663
  102. data/asciidoc/main.aap +77 -0
  103. data/asciidoc/slidy.conf +136 -0
  104. data/asciidoc/{examples/website/xhtml11-manpage.css → stylesheets/asciidoc-manpage.css} +1 -1
  105. data/asciidoc/stylesheets/asciidoc.css +508 -0
  106. data/asciidoc/stylesheets/docbook-xsl.css +322 -272
  107. data/asciidoc/stylesheets/flask-manpage.css +1 -0
  108. data/asciidoc/stylesheets/flask.css +584 -0
  109. data/asciidoc/stylesheets/pygments.css +66 -0
  110. data/asciidoc/stylesheets/slidy.css +445 -0
  111. data/asciidoc/stylesheets/toc2.css +33 -0
  112. data/asciidoc/stylesheets/volnitsky-manpage.css +1 -0
  113. data/asciidoc/stylesheets/volnitsky.css +435 -0
  114. data/asciidoc/stylesheets/xhtml11-quirks.css +5 -3
  115. data/asciidoc/tests/asciidocapi.py +257 -0
  116. data/asciidoc/tests/data/deprecated-quotes.txt +12 -0
  117. data/asciidoc/tests/data/filters-test.txt +90 -0
  118. data/asciidoc/tests/data/lang-de-test.txt +106 -0
  119. data/asciidoc/tests/data/lang-en-test.txt +114 -0
  120. data/asciidoc/tests/data/lang-es-test.txt +106 -0
  121. data/asciidoc/tests/data/lang-fr-test.txt +106 -0
  122. data/asciidoc/tests/data/lang-hu-test.txt +106 -0
  123. data/asciidoc/tests/data/lang-nl-test.txt +94 -0
  124. data/asciidoc/tests/data/lang-pt-BR-test.txt +106 -0
  125. data/asciidoc/tests/data/lang-ru-test.txt +106 -0
  126. data/asciidoc/tests/data/lang-uk-test.txt +106 -0
  127. data/asciidoc/tests/data/oldtables.txt +64 -0
  128. data/asciidoc/tests/data/rcs-id-marker-test.txt +6 -0
  129. data/asciidoc/tests/data/testcases.conf +2 -0
  130. data/asciidoc/tests/data/testcases.txt +740 -0
  131. data/asciidoc/tests/data/utf8-bom-test.txt +9 -0
  132. data/asciidoc/tests/data/utf8-examples.txt +217 -0
  133. data/asciidoc/tests/testasciidoc.conf +520 -0
  134. data/asciidoc/tests/testasciidoc.py +411 -0
  135. data/asciidoc/text.conf +16 -16
  136. data/asciidoc/vim/syntax/asciidoc.vim +99 -91
  137. data/asciidoc/wordpress.conf +43 -3
  138. data/asciidoc/xhtml11-quirks.conf +61 -57
  139. data/asciidoc/xhtml11.conf +684 -645
  140. data/lib/mizuho.rb +2 -0
  141. data/lib/mizuho/generator.rb +2 -2
  142. data/test/generator_spec.rb +1 -1
  143. data/test/parser_spec.rb +1 -1
  144. data/test/spec_helper.rb +3 -4
  145. metadata +87 -88
  146. data/asciidoc/a2x +0 -674
  147. data/asciidoc/doc/article.css-embedded.html +0 -602
  148. data/asciidoc/doc/article.html +0 -46
  149. data/asciidoc/doc/asciidoc-revhistory.xml +0 -27
  150. data/asciidoc/doc/asciidoc.1.css-embedded.html +0 -598
  151. data/asciidoc/doc/asciidoc.1.css.html +0 -212
  152. data/asciidoc/doc/asciidoc.1.html +0 -190
  153. data/asciidoc/doc/asciidoc.css-embedded.html +0 -7853
  154. data/asciidoc/doc/asciidoc.css.html +0 -7416
  155. data/asciidoc/doc/asciidoc.html +0 -3339
  156. data/asciidoc/doc/book-multi.css-embedded.html +0 -575
  157. data/asciidoc/doc/book-multi.html +0 -55
  158. data/asciidoc/doc/book.css-embedded.html +0 -607
  159. data/asciidoc/doc/book.html +0 -43
  160. data/asciidoc/doc/docbook-xsl.css +0 -272
  161. data/asciidoc/doc/latex-backend.html +0 -117
  162. data/asciidoc/doc/music-filter.html +0 -566
  163. data/asciidoc/doc/source-highlight-filter.html +0 -214
  164. data/asciidoc/docbook.conf +0 -721
  165. data/asciidoc/examples/website/ASCIIMathML.js +0 -938
  166. data/asciidoc/examples/website/CHANGELOG.html +0 -4389
  167. data/asciidoc/examples/website/CHANGELOG.txt +0 -1810
  168. data/asciidoc/examples/website/INSTALL.html +0 -161
  169. data/asciidoc/examples/website/INSTALL.txt +0 -71
  170. data/asciidoc/examples/website/LaTeXMathML.js +0 -1223
  171. data/asciidoc/examples/website/README-website.html +0 -118
  172. data/asciidoc/examples/website/README-website.txt +0 -29
  173. data/asciidoc/examples/website/README.html +0 -125
  174. data/asciidoc/examples/website/README.txt +0 -36
  175. data/asciidoc/examples/website/a2x.1.html +0 -419
  176. data/asciidoc/examples/website/a2x.1.txt +0 -204
  177. data/asciidoc/examples/website/asciidoc-docbook-xsl.html +0 -130
  178. data/asciidoc/examples/website/asciidoc-docbook-xsl.txt +0 -43
  179. data/asciidoc/examples/website/asciidoc-graphviz-sample.txt +0 -130
  180. data/asciidoc/examples/website/asciimathml.txt +0 -64
  181. data/asciidoc/examples/website/build-website.sh +0 -25
  182. data/asciidoc/examples/website/customers.csv +0 -18
  183. data/asciidoc/examples/website/downloads.html +0 -257
  184. data/asciidoc/examples/website/downloads.txt +0 -121
  185. data/asciidoc/examples/website/faq.html +0 -673
  186. data/asciidoc/examples/website/faq.txt +0 -547
  187. data/asciidoc/examples/website/index.html +0 -419
  188. data/asciidoc/examples/website/index.txt +0 -245
  189. data/asciidoc/examples/website/latex-backend.html +0 -535
  190. data/asciidoc/examples/website/latex-backend.txt +0 -191
  191. data/asciidoc/examples/website/latexmathml.txt +0 -41
  192. data/asciidoc/examples/website/layout1.conf +0 -161
  193. data/asciidoc/examples/website/layout1.css +0 -65
  194. data/asciidoc/examples/website/layout2.conf +0 -158
  195. data/asciidoc/examples/website/layout2.css +0 -93
  196. data/asciidoc/examples/website/manpage.html +0 -266
  197. data/asciidoc/examples/website/manpage.txt +0 -118
  198. data/asciidoc/examples/website/music-filter.html +0 -242
  199. data/asciidoc/examples/website/music-filter.txt +0 -158
  200. data/asciidoc/examples/website/music1.abc +0 -12
  201. data/asciidoc/examples/website/music1.png +0 -0
  202. data/asciidoc/examples/website/music2.ly +0 -9
  203. data/asciidoc/examples/website/music2.png +0 -0
  204. data/asciidoc/examples/website/newlists.txt +0 -40
  205. data/asciidoc/examples/website/newtables.txt +0 -397
  206. data/asciidoc/examples/website/sample1.png +0 -0
  207. data/asciidoc/examples/website/sample3.png +0 -0
  208. data/asciidoc/examples/website/sample4.png +0 -0
  209. data/asciidoc/examples/website/source-highlight-filter.html +0 -286
  210. data/asciidoc/examples/website/source-highlight-filter.txt +0 -203
  211. data/asciidoc/examples/website/support.html +0 -78
  212. data/asciidoc/examples/website/support.txt +0 -5
  213. data/asciidoc/examples/website/toc.js +0 -69
  214. data/asciidoc/examples/website/userguide.html +0 -7460
  215. data/asciidoc/examples/website/userguide.txt +0 -4979
  216. data/asciidoc/examples/website/version83.txt +0 -37
  217. data/asciidoc/examples/website/version9.html +0 -143
  218. data/asciidoc/examples/website/version9.txt +0 -48
  219. data/asciidoc/examples/website/xhtml11-quirks.css +0 -41
  220. data/asciidoc/examples/website/xhtml11.css +0 -328
  221. data/asciidoc/stylesheets/xhtml11-manpage.css +0 -18
  222. data/asciidoc/stylesheets/xhtml11.css +0 -328
@@ -0,0 +1,114 @@
1
+ // Test for lang-en.conf language file.
2
+ :lang: en
3
+
4
+ Languages Test
5
+ ==============
6
+ :revnumber: v1.0
7
+ :revdate: 2003-12-21
8
+
9
+ ifdef::doctype-article[]
10
+ // Translate title.
11
+ Abstract
12
+ --------
13
+ Abstract special section.
14
+
15
+ endif::doctype-article[]
16
+
17
+
18
+ ifdef::doctype-book[]
19
+ // Translate title.
20
+ Dedication
21
+ ----------
22
+ Dedication special section.
23
+
24
+
25
+ // Translate title.
26
+ Preface
27
+ -------
28
+ Preface special section.
29
+
30
+
31
+ // Translate title.
32
+ Colophon
33
+ --------
34
+ Colophon special section.
35
+
36
+ endif::doctype-book[]
37
+
38
+
39
+ The First Section
40
+ -----------------
41
+ Admonishments
42
+ ~~~~~~~~~~~~~
43
+ Do not translate in the source file -- they are translated to the
44
+ output file
45
+
46
+ NOTE: Lorum ipsum.
47
+
48
+ TIP: Lorum ipsum.
49
+
50
+ WARNING: Lorum ipsum.
51
+
52
+ CAUTION: Lorum ipsum.
53
+
54
+ IMPORTANT: Lorum ipsum.
55
+
56
+ .Tiger
57
+ image::../../images/tiger.png[Tiger image]
58
+
59
+ Followed by an example table:
60
+
61
+ .Table
62
+ [width="60%",options="header"]
63
+ |==============================================
64
+ | Option | Description
65
+ | -a 'USER GROUP' | Add 'USER' to 'GROUP'.
66
+ | -R 'GROUP' | Disables access to 'GROUP'.
67
+ |==============================================
68
+
69
+ And now for something completely different: ((monkeys)), lions and
70
+ tigers.
71
+
72
+
73
+ // Translate title.
74
+ Appendix A: Example Appendix
75
+ ----------------------------
76
+ Appendix special section.
77
+
78
+
79
+ // Translate title.
80
+ Bibliography
81
+ ------------
82
+ Bibliography special section.
83
+
84
+ [bibliography]
85
+ - [[[taoup]]] Eric Steven Raymond. 'The Art of Unix
86
+ Programming'. Addison-Wesley. ISBN 0-13-142901-9.
87
+ - [[[walsh-muellner]]] Norman Walsh & Leonard Muellner.
88
+ 'DocBook - The Definitive Guide'. O'Reilly & Associates. 1999.
89
+ ISBN 1-56592-580-7.
90
+
91
+
92
+ // Translate title.
93
+ Glossary
94
+ --------
95
+ Glossary special section.
96
+
97
+ [glossary]
98
+ A glossary term::
99
+ The corresponding (indented) definition.
100
+
101
+ A second glossary term::
102
+ The corresponding (indented) definition.
103
+
104
+
105
+ ifdef::basebackend-docbook[]
106
+ // Translate title.
107
+ Index
108
+ -----
109
+ ////////////////////////////////////////////////////////////////
110
+ Index special section.
111
+ The index is normally left completely empty, it's contents being
112
+ generated automatically by the DocBook toolchain.
113
+ ////////////////////////////////////////////////////////////////
114
+ endif::basebackend-docbook[]
@@ -0,0 +1,106 @@
1
+ // Test for lang-es.conf language file.
2
+ :lang: es
3
+
4
+ Languages Test
5
+ ==============
6
+ :revnumber: v1.0
7
+ :revdate: 2003-12-21
8
+
9
+ ifdef::doctype-article[]
10
+ Resumen
11
+ -------
12
+ Abstract special section.
13
+
14
+ endif::doctype-article[]
15
+
16
+
17
+ ifdef::doctype-book[]
18
+ Dedicación
19
+ ----------
20
+ Dedication special section.
21
+
22
+
23
+ Prefacio
24
+ --------
25
+ Preface special section.
26
+
27
+
28
+ Colofón
29
+ -------
30
+ Colophon special section.
31
+
32
+ endif::doctype-book[]
33
+
34
+
35
+ The First Section
36
+ -----------------
37
+ Admonishments
38
+ ~~~~~~~~~~~~~
39
+ Do not translate in the source file -- they are translated to the
40
+ output file
41
+
42
+ NOTE: Lorum ipsum.
43
+
44
+ TIP: Lorum ipsum.
45
+
46
+ WARNING: Lorum ipsum.
47
+
48
+ CAUTION: Lorum ipsum.
49
+
50
+ IMPORTANT: Lorum ipsum.
51
+
52
+ .Tiger
53
+ image::../../images/tiger.png[Tiger image]
54
+
55
+ Followed by an example table:
56
+
57
+ .Table
58
+ [width="60%",options="header"]
59
+ |==============================================
60
+ | Option | Description
61
+ | -a 'USER GROUP' | Add 'USER' to 'GROUP'.
62
+ | -R 'GROUP' | Disables access to 'GROUP'.
63
+ |==============================================
64
+
65
+ And now for something completely different: ((monkeys)), lions and
66
+ tigers.
67
+
68
+
69
+ Apéndice A: Example Appendix
70
+ ----------------------------
71
+ Appendix special section.
72
+
73
+
74
+ Bibliografía
75
+ ------------
76
+ Bibliography special section.
77
+
78
+ [bibliography]
79
+ - [[[taoup]]] Eric Steven Raymond. 'The Art of Unix
80
+ Programming'. Addison-Wesley. ISBN 0-13-142901-9.
81
+ - [[[walsh-muellner]]] Norman Walsh & Leonard Muellner.
82
+ 'DocBook - The Definitive Guide'. O'Reilly & Associates. 1999.
83
+ ISBN 1-56592-580-7.
84
+
85
+
86
+ Glosario
87
+ --------
88
+ Glossary special section.
89
+
90
+ [glossary]
91
+ A glossary term::
92
+ The corresponding (indented) definition.
93
+
94
+ A second glossary term::
95
+ The corresponding (indented) definition.
96
+
97
+
98
+ ifdef::basebackend-docbook[]
99
+ Índice
100
+ ------
101
+ ////////////////////////////////////////////////////////////////
102
+ Index special section.
103
+ The index is normally left completely empty, it's contents being
104
+ generated automatically by the DocBook toolchain.
105
+ ////////////////////////////////////////////////////////////////
106
+ endif::basebackend-docbook[]
@@ -0,0 +1,106 @@
1
+ // Test for lang-fr.conf language file.
2
+ :lang: fr
3
+
4
+ Languages Test
5
+ ==============
6
+ :revnumber: v1.0
7
+ :revdate: 2003-12-21
8
+
9
+ ifdef::doctype-article[]
10
+ Résumé
11
+ ------
12
+ Abstract special section.
13
+
14
+ endif::doctype-article[]
15
+
16
+
17
+ ifdef::doctype-book[]
18
+ Dédicace
19
+ --------
20
+ Dedication special section.
21
+
22
+
23
+ Préface
24
+ -------
25
+ Preface special section.
26
+
27
+
28
+ Colophon
29
+ --------
30
+ Colophon special section.
31
+
32
+ endif::doctype-book[]
33
+
34
+
35
+ The First Section
36
+ -----------------
37
+ Admonishments
38
+ ~~~~~~~~~~~~~
39
+ Do not translate in the source file -- they are translated to the
40
+ output file
41
+
42
+ NOTE: Lorum ipsum.
43
+
44
+ TIP: Lorum ipsum.
45
+
46
+ WARNING: Lorum ipsum.
47
+
48
+ CAUTION: Lorum ipsum.
49
+
50
+ IMPORTANT: Lorum ipsum.
51
+
52
+ .Tiger
53
+ image::../../images/tiger.png[Tiger image]
54
+
55
+ Followed by an example table:
56
+
57
+ .Table
58
+ [width="60%",options="header"]
59
+ |==============================================
60
+ | Option | Description
61
+ | -a 'USER GROUP' | Add 'USER' to 'GROUP'.
62
+ | -R 'GROUP' | Disables access to 'GROUP'.
63
+ |==============================================
64
+
65
+ And now for something completely different: ((monkeys)), lions and
66
+ tigers.
67
+
68
+
69
+ Appendice A: Example Appendix
70
+ -----------------------------
71
+ Appendix special section.
72
+
73
+
74
+ Bibliographie
75
+ -------------
76
+ Bibliography special section.
77
+
78
+ [bibliography]
79
+ - [[[taoup]]] Eric Steven Raymond. 'The Art of Unix
80
+ Programming'. Addison-Wesley. ISBN 0-13-142901-9.
81
+ - [[[walsh-muellner]]] Norman Walsh & Leonard Muellner.
82
+ 'DocBook - The Definitive Guide'. O'Reilly & Associates. 1999.
83
+ ISBN 1-56592-580-7.
84
+
85
+
86
+ Glossaire
87
+ ---------
88
+ Glossary special section.
89
+
90
+ [glossary]
91
+ A glossary term::
92
+ The corresponding (indented) definition.
93
+
94
+ A second glossary term::
95
+ The corresponding (indented) definition.
96
+
97
+
98
+ ifdef::basebackend-docbook[]
99
+ Index
100
+ -----
101
+ ////////////////////////////////////////////////////////////////
102
+ Index special section.
103
+ The index is normally left completely empty, it's contents being
104
+ generated automatically by the DocBook toolchain.
105
+ ////////////////////////////////////////////////////////////////
106
+ endif::basebackend-docbook[]
@@ -0,0 +1,106 @@
1
+ // Test for lang-hu.conf language file.
2
+ :lang: hu
3
+
4
+ Languages Test
5
+ ==============
6
+ :revnumber: v1.0
7
+ :revdate: 2003-12-21
8
+
9
+ ifdef::doctype-article[]
10
+ Kivonat
11
+ -------
12
+ Abstract special section.
13
+
14
+ endif::doctype-article[]
15
+
16
+
17
+ ifdef::doctype-book[]
18
+ Ajánlás
19
+ --------
20
+ Dedication special section.
21
+
22
+
23
+ Előszó
24
+ ------
25
+ Preface special section.
26
+
27
+
28
+ Utószó
29
+ ------
30
+ Colophon special section.
31
+
32
+ endif::doctype-book[]
33
+
34
+
35
+ The First Section
36
+ -----------------
37
+ Admonishments
38
+ ~~~~~~~~~~~~~
39
+ Do not translate in the source file -- they are translated to the
40
+ output file
41
+
42
+ NOTE: Lorum ipsum.
43
+
44
+ TIP: Lorum ipsum.
45
+
46
+ WARNING: Lorum ipsum.
47
+
48
+ CAUTION: Lorum ipsum.
49
+
50
+ IMPORTANT: Lorum ipsum.
51
+
52
+ .Tiger
53
+ image::../../images/tiger.png[Tiger image]
54
+
55
+ Followed by an example table:
56
+
57
+ .Table
58
+ [width="60%",options="header"]
59
+ |==============================================
60
+ | Option | Description
61
+ | -a 'USER GROUP' | Add 'USER' to 'GROUP'.
62
+ | -R 'GROUP' | Disables access to 'GROUP'.
63
+ |==============================================
64
+
65
+ And now for something completely different: ((monkeys)), lions and
66
+ tigers.
67
+
68
+
69
+ A függelék: Example Appendix
70
+ ----------------------------
71
+ Appendix special section.
72
+
73
+
74
+ Bibliográfia
75
+ ------------
76
+ Bibliography special section.
77
+
78
+ [bibliography]
79
+ - [[[taoup]]] Eric Steven Raymond. 'The Art of Unix
80
+ Programming'. Addison-Wesley. ISBN 0-13-142901-9.
81
+ - [[[walsh-muellner]]] Norman Walsh & Leonard Muellner.
82
+ 'DocBook - The Definitive Guide'. O'Reilly & Associates. 1999.
83
+ ISBN 1-56592-580-7.
84
+
85
+
86
+ Szójegyzék
87
+ ----------
88
+ Glossary special section.
89
+
90
+ [glossary]
91
+ A glossary term::
92
+ The corresponding (indented) definition.
93
+
94
+ A second glossary term::
95
+ The corresponding (indented) definition.
96
+
97
+
98
+ ifdef::basebackend-docbook[]
99
+ Index
100
+ -----
101
+ ////////////////////////////////////////////////////////////////
102
+ Index special section.
103
+ The index is normally left completely empty, it's contents being
104
+ generated automatically by the DocBook toolchain.
105
+ ////////////////////////////////////////////////////////////////
106
+ endif::basebackend-docbook[]
@@ -0,0 +1,94 @@
1
+ // Test for lang-nl.conf language file.
2
+ :lang: nl
3
+
4
+ = Languages Test
5
+ :revnumber: v1.0
6
+ :revdate: 2003-12-21
7
+
8
+ ifdef::doctype-article[]
9
+ == Samenvatting
10
+ Bijzonder 'abstract' sectie.
11
+
12
+ endif::doctype-article[]
13
+
14
+
15
+ ifdef::doctype-book[]
16
+ == Opdracht
17
+ Bijzonder 'dedication' sectie.
18
+
19
+
20
+ == Voorwoord
21
+ Bijzonder 'preface' sectie.
22
+
23
+
24
+ == Colofon
25
+ Bijzonder 'colophon' sectie.
26
+
27
+ endif::doctype-book[]
28
+
29
+
30
+ == Het Eerste Hoofdstuk
31
+ === Vermaningen
32
+ Vertaal ze niet in the broncode -- ze worden vanzelf vertaald in het
33
+ output bestand
34
+
35
+ NOTE: Lorum ipsum.
36
+
37
+ TIP: Lorum ipsum.
38
+
39
+ WARNING: Lorum ipsum.
40
+
41
+ CAUTION: Lorum ipsum.
42
+
43
+ IMPORTANT: Lorum ipsum.
44
+
45
+ .Tiger
46
+ image::../../images/tiger.png[Tiger image]
47
+
48
+ Gevolgd door een voorbeeld tabel:
49
+
50
+ .Table
51
+ [width="60%",options="header"]
52
+ |==============================================
53
+ | Optie | Beschrijving
54
+ | -a 'USER GROUP' | Voeg 'USER' toe aan 'GROUP'.
55
+ | -R 'GROUP' | Schakel toegang uit tot 'GROUP'.
56
+ |==============================================
57
+
58
+ En nu iets totaal anders: ((apen)), leeuwen en tijgers.
59
+
60
+
61
+ == Bijlage A: Voorbeeld Bijlage
62
+ Bijzonder 'appendix' sectie.
63
+
64
+
65
+ == Literatuurlijst
66
+ Bijzonder 'bibliography' sectie.
67
+
68
+ [bibliography]
69
+ - [[[taoup]]] Eric Steven Raymond. 'The Art of Unix
70
+ Programming'. Addison-Wesley. ISBN 0-13-142901-9.
71
+ - [[[walsh-muellner]]] Norman Walsh & Leonard Muellner.
72
+ 'DocBook - The Definitive Guide'. O'Reilly & Associates. 1999.
73
+ ISBN 1-56592-580-7.
74
+
75
+
76
+ == Woordenlijst
77
+ Bijzonder 'glossary' sectie.
78
+
79
+ [glossary]
80
+ Een woordenlijst term::
81
+ De bijhorende (ingesprongen) definitie.
82
+
83
+ Een tweede term::
84
+ De bijhorende (ingesprongen) definitie.
85
+
86
+
87
+ ifdef::basebackend-docbook[]
88
+ == Register
89
+ ////////////////////////////////////////////////////////////////
90
+ Bijzonder 'index' sectie.
91
+ Het register wordt normaal leeg gehouden, de inhoud wordt
92
+ automatisch gegenereerd door de DocBook hulpmiddelen.
93
+ ////////////////////////////////////////////////////////////////
94
+ endif::basebackend-docbook[]