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
@@ -1,118 +1,171 @@
1
- ASCIIDOC(1)
2
- ===========
3
- Stuart Rackham <srackham@gmail.com>
4
-
5
-
6
- NAME
7
- ----
8
- asciidoc - converts an AsciiDoc text file to DocBook, HTML or LinuxDoc
9
-
10
-
11
- SYNOPSIS
12
- --------
13
- *asciidoc* ['OPTIONS'] 'FILE'
14
-
15
-
16
- DESCRIPTION
17
- -----------
18
- The asciidoc(1) command translates the AsciiDoc text file 'FILE' to a
19
- DocBook, HTML or LinuxDoc file. If 'FILE' is '-' then the standard
20
- input is used.
21
-
22
-
23
- OPTIONS
24
- -------
25
- *-a, --attribute*='ATTRIBUTE'::
26
- Define or delete document attribute. 'ATTRIBUTE' is formatted like
27
- 'NAME=VALUE'. Command-line attributes take precedence over
28
- document and configuration file attributes. Alternate acceptable
29
- forms are 'NAME' (the 'VALUE' defaults to an empty string);
30
- 'NAME!' (delete the 'NAME' attribute); 'NAME@' (do not override
31
- document or configuration file attributes). Values containing
32
- spaces should be enclosed in double-quote characters. This option
33
- may be specified more than once.
34
-
35
- *-b, --backend*='BACKEND'::
36
- Backend output file format: 'docbook', 'xhtml11' or 'html4'.
37
- Defaults to 'xhtml11'.
38
-
39
- *-f, --conf-file*='CONF_FILE'::
40
- Use configuration file 'CONF_FILE'.Configuration files processed
41
- in command-line order (after implicit configuration files). This
42
- option may be specified more than once.
43
-
44
- *-d, --doctype*='DOCTYPE'::
45
- Document type: 'article', 'manpage' or 'book'. The 'book' document
46
- type is only supported by the 'docbook' backend. Default document
47
- type is 'article'.
48
-
49
- *-c, --dump-conf*::
50
- Dump configuration to stdout.
51
-
52
- *-h, --help*[='TOPIC']::
53
- Print help TOPIC. *--help*='topics' will print a list of help
54
- topics, *--help*='syntax' summarizes AsciiDoc syntax,
55
- *--help*='manpage' prints the AsciiDoc manpage.
56
-
57
- *-e, --no-conf*::
58
- Exclude implicitly loaded configuration files except for those
59
- named like the input file ('infile.conf' and
60
- 'infile-backend.conf').
61
-
62
- *-s, --no-header-footer*::
63
- Suppress document header and footer output.
64
-
65
- *-o, --out-file*='OUT_FILE'::
66
- Write output to file 'OUT_FILE'. Defaults to the base name of
67
- input file with 'backend' extension. If the input is stdin then
68
- the outfile defaults to stdout. If 'OUT_FILE' is '-' then the
69
- standard output is used.
70
-
71
- *-n, --section-numbers*::
72
- Auto-number HTML article section titles. Synonym for *-a
73
- numbered*.
74
-
75
- *--unsafe*::
76
- Disable safe mode. Safe mode is enabled by default, disabling
77
- it is potentially dangerous.
78
-
79
- *-v, --verbose*::
80
- Verbosely print processing information and configuration file
81
- checks to stderr.
82
-
83
- *--version*::
84
- Print program version number.
85
-
86
-
87
- EXIT STATUS
88
- -----------
89
- *0*::
90
- Success
91
-
92
- *1*::
93
- Failure (syntax or usage error; configuration error; document
94
- processing failure; unexpected error).
95
-
96
-
97
- BUGS
98
- ----
99
- See the AsciiDoc distribution BUGS file.
100
-
101
-
102
- AUTHOR
103
- ------
104
- Written by Stuart Rackham, <srackham@gmail.com>
105
-
106
-
107
- RESOURCES
108
- ---------
109
- SourceForge: <http://sourceforge.net/projects/asciidoc/>
110
-
111
- Main web site: <http://www.methods.co.nz/asciidoc/>
112
-
113
-
114
- COPYING
115
- -------
116
- Copyright \(C) 2002-2008 Stuart Rackham. Free use of this software is
117
- granted under the terms of the GNU General Public License (GPL).
118
-
1
+ ASCIIDOC(1)
2
+ ===========
3
+ :doctype: manpage
4
+
5
+
6
+ NAME
7
+ ----
8
+ asciidoc - converts an AsciiDoc text file to HTML or DocBook
9
+
10
+
11
+ SYNOPSIS
12
+ --------
13
+ *asciidoc* ['OPTIONS'] 'FILE'
14
+
15
+
16
+ DESCRIPTION
17
+ -----------
18
+ The asciidoc(1) command translates the AsciiDoc text file 'FILE' to
19
+ DocBook or HTML. If 'FILE' is '-' then the standard input is used.
20
+
21
+
22
+ OPTIONS
23
+ -------
24
+ *-a, --attribute*='ATTRIBUTE'::
25
+ Define or delete document attribute. 'ATTRIBUTE' is formatted like
26
+ 'NAME=VALUE'. Command-line attributes take precedence over
27
+ document and configuration file attributes. Alternate acceptable
28
+ forms are 'NAME' (the 'VALUE' defaults to an empty string);
29
+ 'NAME!' (delete the 'NAME' attribute); 'NAME=VALUE@' (do not override
30
+ document or configuration file attributes). Values containing
31
+ spaces should be enclosed in double-quote characters. This option
32
+ may be specified more than once. A special attribute named
33
+ 'trace' controls the output of diagnostic information.
34
+
35
+ *-b, --backend*='BACKEND'::
36
+ Backend output file format: 'docbook45', 'xhtml11', 'html4',
37
+ 'wordpress' or 'latex' (the 'latex' backend is experimental).
38
+ You can also the backend alias names 'html' (aliased to 'xhtml11')
39
+ or 'docbook' (aliased to 'docbook45').
40
+ Defaults to 'html'.
41
+
42
+ *-f, --conf-file*='CONF_FILE'::
43
+ Use configuration file 'CONF_FILE'.Configuration files processed
44
+ in command-line order (after implicit configuration files). This
45
+ option may be specified more than once.
46
+
47
+ *--doctest*::
48
+ Run Python doctests in 'asciidoc' module.
49
+
50
+ *-d, --doctype*='DOCTYPE'::
51
+ Document type: 'article', 'manpage' or 'book'. The 'book' document
52
+ type is only supported by the 'docbook' backend. Default document
53
+ type is 'article'.
54
+
55
+ *-c, --dump-conf*::
56
+ Dump configuration to stdout.
57
+
58
+ *--filter*::
59
+ Manage asciidoc(1) filters (see <<X1,*FILTER COMMANDS*>>).
60
+
61
+ *-h, --help* ['TOPIC']::
62
+ Print help TOPIC. *--help* 'topics' will print a list of help
63
+ topics, *--help* 'syntax' summarizes AsciiDoc syntax,
64
+ *--help* 'manpage' prints the AsciiDoc manpage.
65
+
66
+ *-e, --no-conf*::
67
+ Exclude implicitly loaded configuration files except for those
68
+ named like the input file ('infile.conf' and
69
+ 'infile-backend.conf').
70
+
71
+ *-s, --no-header-footer*::
72
+ Suppress document header and footer output.
73
+
74
+ *-o, --out-file*='OUT_FILE'::
75
+ Write output to file 'OUT_FILE'. Defaults to the base name of
76
+ input file with 'backend' extension. If the input is stdin then
77
+ the outfile defaults to stdout. If 'OUT_FILE' is '-' then the
78
+ standard output is used.
79
+
80
+ *-n, --section-numbers*::
81
+ Auto-number HTML article section titles. Synonym for *-a
82
+ numbered*.
83
+
84
+ *--safe*::
85
+ Enable safe mode. Safe mode is disabled by default. AsciiDoc
86
+ 'safe mode' skips potentially dangerous scripted sections in
87
+ AsciiDoc source files.
88
+
89
+ *-v, --verbose*::
90
+ Verbosely print processing information and configuration file
91
+ checks to stderr.
92
+
93
+ *--version*::
94
+ Print program version number.
95
+
96
+
97
+ [[X1]]
98
+ FILTER COMMANDS
99
+ ---------------
100
+ The *--filter* option is used to install, remove and list AsciiDoc
101
+ filter plugins. Filter commands syntax:
102
+
103
+ asciidoc --filter install ZIP_FILE [FILTERS_DIR]
104
+ asciidoc --filter remove FILTER_NAME [FILTERS_DIR]
105
+ asciidoc --filter list
106
+
107
+ Where:
108
+
109
+ *FILTER_NAME*::
110
+ A unique filter name containing only alphanumeric or underscore
111
+ characters.
112
+
113
+ *ZIP_FILE*::
114
+ A Zip file containing filter resources, the name must start with the
115
+ filter name e.g. `my_filter-1.0.zip` packages filter `my_filter`.
116
+
117
+ *FILTERS_DIR*::
118
+ The directory containing installed filters. Each filter is contained
119
+ in its own separate subdirectory which has the same name as the
120
+ filter.
121
+ *FILTERS_DIR* defaults to the `.asciidoc/filters` directory in the
122
+ user's home directory.
123
+
124
+ The filter commands perform as follows:
125
+
126
+ *install*::
127
+ Create a subdirectory in *FILTERS_DIR* with the same name as the
128
+ filter then extract the *ZIP_FILE* into it.
129
+
130
+ *remove*::
131
+ Delete the *FILTER_NAME* filter subdirectory and all its contents from
132
+ the *FILTERS_DIR*.
133
+
134
+ *list*::
135
+ List the names and locations of all installed filters (including
136
+ standard filters installed in the global configuration directory).
137
+
138
+
139
+ EXIT STATUS
140
+ -----------
141
+ *0*::
142
+ Success
143
+
144
+ *1*::
145
+ Failure (syntax or usage error; configuration error; document
146
+ processing failure; unexpected error).
147
+
148
+
149
+ BUGS
150
+ ----
151
+ See the AsciiDoc distribution BUGS file.
152
+
153
+
154
+ AUTHOR
155
+ ------
156
+ AsciiDoc was originally written by Stuart Rackham. Many people have
157
+ contributed to it.
158
+
159
+
160
+ RESOURCES
161
+ ---------
162
+ SourceForge: <http://sourceforge.net/projects/asciidoc/>
163
+
164
+ Main web site: <http://www.methods.co.nz/asciidoc/>
165
+
166
+
167
+ COPYING
168
+ -------
169
+ Copyright \(C) 2002-2011 Stuart Rackham. Free use of this software is
170
+ granted under the terms of the GNU General Public License (GPL).
171
+
@@ -1,8 +1,7 @@
1
- #
2
- # Customization for AsciiDoc documentation.
3
- #
4
- [specialwords]
5
- ifndef::doctype-manpage[]
6
- emphasizedwords=(?u)\\?\bAsciiDoc\b
7
- monospacedwords=(?u)\\?\basciidoc\(1\) (?u)\\?\ba2x\(1\)
8
- endif::doctype-manpage[]
1
+ #
2
+ # Customization for AsciiDoc documentation.
3
+ #
4
+ [specialwords]
5
+ ifndef::doctype-manpage[]
6
+ monospacedwords=(?u)\\?\basciidoc\(1\) (?u)\\?\ba2x\(1\)
7
+ endif::doctype-manpage[]
@@ -1,733 +1,1058 @@
1
- personal_ws-1.1 en 732
2
- Sturmer
3
- Kleber
4
- Kl�ber
5
- quis
6
- auctor
7
- linkcss
8
- multi
9
- CommentBlock
10
- AsciiDoc's
11
- BOLID
12
- callouts
13
- bulleted
14
- starttags
15
- listingblock
16
- ListingBlock
17
- eval
18
- ListLabel
1
+ personal_ws-1.1 en 1057
2
+ mandoc
3
+ colspecs
4
+ API
5
+ testcases
6
+ BSBEV
7
+ dapibus
8
+ dblatex
9
+ mycss
10
+ attributelist
11
+ AttributeList
12
+ Blondel
13
+ permalink
14
+ Chunking
15
+ unescapes
16
+ frontmatter
17
+ libxslt
19
18
  asc
20
- https
21
- endif
22
- stderr
19
+ XSLT
20
+ stdin
21
+ convallis
22
+ AttributeEntrys
23
+ Steen
24
+ BOTTM
25
+ CACTU
26
+ IndentedBlock
27
+ passtext
28
+ ZapfDingbats
29
+ CALS
23
30
  LiteralParagraph
24
- inlinegraphic
25
- Suspendisse
26
- stylesdir
27
- quickstart
28
- doctype
29
- brvbar
30
- BONAP
31
- subslist
32
- frac
31
+ del
32
+ BOM
33
33
  Bon
34
- wnone
35
- iconsdir
36
- undefining
37
- programlisting
38
- xhtml
39
- Windtrainer
34
+ ungenerated
35
+ zipP
36
+ cmd
40
37
  des
41
- specialwords
42
- muellner
43
- Miklos
44
- euismod
38
+ ListItems
45
39
  dev
46
- mkdir
47
- revhistory
48
- tableabswidth
49
- PassthroughBlock
50
- aliquam
51
- pagebreak
52
- munere
53
- startup
54
- ListContinuation
55
- listcontinuation
56
- consectetuer
57
- Magnocavallo
58
- Gouichi
59
- defacto
60
- ListParagraph
61
- charset
62
- backends
40
+ vulputate
41
+ Odio
42
+ doctest
43
+ comspecs
44
+ amet
45
+ Oleksandr
46
+ ExampleBlock
47
+ faf
48
+ luptatum
63
49
  dir
64
- Forsterstr
65
- Cygwin
66
- ponderum
67
- revisionhistory
68
- Lule�
69
- Lulea
70
- latexmathml
71
- LaTeXMathML
72
- CALS
73
- XSLT
74
- tyger
75
- outdir
76
- rewritePrefix
77
- Sakellariou
78
- AttributeEntry
79
- attributeentry
80
- callto
81
- vsides
82
- tablewidth
83
- Morbi
84
- monospacedwords
50
+ Lorum
51
+ superceded
52
+ inlinegraphic
53
+ specialcharacters
54
+ cpp
55
+ RevisionLine
56
+ TitleName
57
+ Fusce
58
+ ralink
59
+ scaledwidth
60
+ FooParser
61
+ VMiklos
62
+ Trotman
63
+ DelimitedBlocks
85
64
  css
86
- asciimath
87
- amet
88
- tabstop
65
+ preconfigured
66
+ Magnocavallo
89
67
  csv
90
- Yakshin's
91
- ListTerm
92
- stylesheets
93
- pageunits
94
- LaTeX
95
- citetitle
96
- emphasizedwords
97
- BlockTitle
98
- blocktitle
99
- DTD
68
+ Mandelson
69
+ GCC
70
+ CSW
71
+ Potapov
72
+ nisl
73
+ Gao
74
+ nullam
75
+ Moolenaar
76
+ Habitasse
77
+ mimetypes
78
+ dtb
79
+ doctime
100
80
  CVS
101
- valign
102
- ListEntry
103
- Ashworth
104
- Bowlin
105
- latin
106
- stylename
107
- TableUnderline
108
- simpara
109
- tgroup
110
- JavaHelp
111
- BufRead
81
+ DTD
82
+ Gbs
83
+ graphviz
84
+ toclevel
85
+ plaintext
86
+ hyperlinks
87
+ dui
112
88
  dsv
113
- O'Reilly
89
+ ENV
114
90
  dvi
115
- CommentBlocks
116
- lowerroman
91
+ stderr
92
+ SimpleSection
117
93
  gif
118
- Builtin
119
- tabledef
120
- manpurpose
121
- dignissim
122
- luptatum
123
- TitleBlock
94
+ eBook
95
+ prepend
96
+ RevisionNumber
97
+ CommentBlocks
98
+ consequat
124
99
  fmt
125
- subscripted
126
- MiddleName
127
- middlename
128
- subdirectories
129
- footnoteref
130
- passtext
131
- manname
132
- ipsum
133
- itemtag
134
- entrytag
100
+ Amade
101
+ inline
102
+ monospacedwords
103
+ informaltable
104
+ realpath
105
+ validator
106
+ colwidth
135
107
  hhc
136
- else's
137
- Graphviz
138
- executables
139
- basebackend
140
- expr
108
+ Chai
109
+ strongwords
110
+ setlocal
111
+ ListingBlock
112
+ listingblock
113
+ Posuere
141
114
  exe
142
- BufNewFile
143
- CustomBlocks
144
- entrytbl
145
- Ghostscript
146
- verear
147
- Buenos
148
- linuxdoc
149
- LinuxDoc
150
- PostScript
115
+ AuthorInfo
116
+ hhk
117
+ vsides
118
+ rewriteSystem
119
+ taoup
151
120
  hhp
152
- Vijay
153
- Pretium
154
- systemIdStartString
155
- README
156
- utils
157
- CustomBlock
158
- fermentum
159
- ListingBlocks
121
+ listelement
122
+ AttributeLists
123
+ magna
124
+ xreflabel
125
+ PDF's
126
+ PDFs
127
+ pygmentize
128
+ pede
129
+ MSIE
130
+ permalinks
131
+ Boscombe
132
+ Daly
133
+ arcu
160
134
  GPL
161
- hsides
162
- upperalpha
163
- Bolido
164
- B�lido
165
- footrow
166
- misspelt
167
- WINNT
168
- thead
169
- LIBDIR
170
- regex
171
- dblatex
172
- bloggs
135
+ codec
136
+ MSHR
137
+ listcontinuation
138
+ ListContinuation
139
+ apos
140
+ ShareSource
141
+ epubtest
142
+ projectname
173
143
  hoc
174
- LiteralParagraphs
175
- primis
176
- VerbatimBlock
177
- verbatimblock
178
- shiftwidth
179
- misevaluations
180
- asciidocEmphasized
181
- mattis
182
- Chai
183
- headrow
184
- Efros
144
+ Maier
145
+ ispum
146
+ args
147
+ TableFooter
148
+ LiberationSerif
149
+ blog
150
+ passthroughs
185
151
  gui
186
- Blondel
187
152
  ile
188
- Bazon
189
- subprocess
190
- bodyrows
191
- TODO
192
- mailto
193
- interesset
194
- footrows
195
- TableFooter
196
- ItemTerm
197
- authorinitials
198
- docname
199
- BLAUS
200
- Daly
201
- arcu
202
- PDF's
203
- PDFs
153
+ sgmlfmt
154
+ formulae
155
+ dbkview
156
+ AsciiDoc's
157
+ BackendBlock
158
+ tbody
159
+ DSSSL
204
160
  jim
161
+ valign
162
+ ldquo
205
163
  Makefile
206
- MSIE
207
- eval's
208
- Movet
209
- xmldecl
210
- cellpadding
211
- imagesdir
212
- java
213
- mediaobject
214
- SimpleList
215
- apos
216
- MSHR
217
- unescaped
218
- toclevel
219
- runtime
220
- CalloutList
221
- online
222
- endtags
223
- ctags
224
- sudo
225
- Helvetica
226
- SectionClose
227
- termtag
164
+ munere
165
+ Raggett's
166
+ citetitle
167
+ Lai
168
+ guimenuitem
169
+ IRC
170
+ plugin
171
+ starttags
172
+ tgroup
173
+ Miklos
174
+ porttitor
175
+ Maecenas
176
+ systemIdStartString
177
+ footnoteref
228
178
  joe
229
- indir
230
- Comidas
231
- Kumar
232
- JPG
179
+ velit
180
+ p�re
181
+ pere
182
+ purus
183
+ iso
184
+ ItemLabel
185
+ jpg
186
+ adipiscing
187
+ filetype
233
188
  listnumber
234
- Tiago
235
- texttag
236
- ItemText
237
- superscripting
238
- Potapov
239
- presubs
189
+ SourceForge
190
+ groff
191
+ mansource
240
192
  JRE
241
- VerbatimBlocks
242
- printf
243
- literallayout
244
- backcolor
245
- greek
246
- comspec
247
- paradef
248
- commodo
249
- lorem
250
- AuthorLine
193
+ verear
194
+ Lex
251
195
  mea
252
- FreeBSD
196
+ jqs
197
+ PassthroughBlocks
198
+ blockdef
199
+ javascript
200
+ JavaScript
201
+ nam
202
+ OEBPS
203
+ symlinks
204
+ confdir
205
+ optionname
206
+ sollicitudin
253
207
  companyname
254
- noborders
255
- linux
256
- BSBEV
257
- mauris
258
- backtick
259
- toolchain
260
- tfoot
261
- manversion
262
- snabbkop
263
- snabbk�p
264
- HMTL
265
- everti
266
- CACTU
267
- Mandelson
268
- BOTTM
269
- mydoc
270
- dolorum
208
+ pageunits
271
209
  nec
272
- Mozilla
273
- AttributeList
274
- attributelist
275
- pere
276
- p�re
277
- admonitionblock
278
- Daitx
279
- headrows
210
+ loc
211
+ latexmath
212
+ articleinfo
213
+ auctor
214
+ refname
215
+ mim
216
+ Farhat
217
+ uninstall
218
+ localdate
219
+ ncx
220
+ ListEntry
280
221
  textwidth
281
- BlockMacros
282
- prepend
283
- labeltag
284
- ExampleBlock
285
- Efros's
286
- starttag
287
- LOCALCLASSPATH
288
- stdout
289
- strongwords
290
- vimrc
291
- htmlhelp
292
- HTMLHelp
293
- bookmarked
294
- backend
295
- indexterm
296
- pgwide
297
- attrlist
222
+ ItemTerm
223
+ backquotes
224
+ subscripted
298
225
  lpr
299
- readlines
226
+ autoplay
227
+ Delikatessen
228
+ mydocument
300
229
  odf
301
- informaltable
302
- rewriteURI
303
- formatlistpat
304
- Konqueror
305
- pageunit
306
- upperroman
307
- Blauer
308
- backmatter
309
- stdin
310
- chapt
311
- href
312
- consetetur
313
- chunked
314
- Steen
315
- Vivamus
316
- latexmath
230
+ brvbar
231
+ tabletags
232
+ morerows
233
+ ListItem
234
+ coids
235
+ nocontrols
236
+ shiftwidth
237
+ nulla
238
+ endDocument
317
239
  odt
318
- VMiklos's
240
+ Cygwin
241
+ ogg
242
+ ultrices
243
+ IndentedParagraph
244
+ indentedparagraph
319
245
  ltr
320
- newtables
321
- namespace
322
- tzname
246
+ doctests
247
+ asciidocapi
248
+ AsciiDocAPI
249
+ itemtag
250
+ Dvips
251
+ Jython
252
+ tincidunt
253
+ Solaris
323
254
  pdf
324
- LastName
325
- lastname
326
- SidebarBlocks
327
- ItemContinuation
328
- Lorum
329
- Fusce
330
- PassthroughBlocks
331
- testblock
332
- infty
333
- Woodall
334
- Firefox
335
- userguide
336
- Knisley
337
- FilterBlocks
338
- posattrs
339
- listdef
340
- tabletags
341
- TableHeader
342
- QuoteBlocks
343
- manpage
344
- preconfigured
345
- Cerrito
346
- Bouchers
347
- JavaScript
348
- newlists
349
- guimenu
255
+ ogv
256
+ authorgroup
257
+ manpages
258
+ ItemText
259
+ dignissim
260
+ cdata
261
+ autoconf
262
+ ANDed
263
+ devnull
264
+ autocmd
265
+ readlines
266
+ pageunit
267
+ coid
268
+ noborders
269
+ facto
350
270
  ListParagraphs
351
- bodydata
352
- MEPIS
353
- firstname
354
- FirstName
355
- idprefix
356
- footdata
357
- blockdef
358
- SourceForge
359
- JIMI
360
- PNG
271
+ nunc
272
+ opf
273
+ orci
274
+ CustomBlocks
275
+ refentryinfo
276
+ informalfigure
277
+ ORed
278
+ pygments
279
+ yyyy
280
+ online
281
+ LIBDIR
282
+ docinfo
283
+ BlockId
361
284
  png
362
- IndentedBlock
363
- uriStartString
364
- BackendBlock
365
- manpages
366
- mantitle
285
+ lobortis
286
+ Broberg
287
+ Bowlin
288
+ navPoint
289
+ ASCIIMathML
290
+ AsciiMathML
291
+ asciimathml
292
+ conf
367
293
  RCS
368
- indentsize
369
- outfilesuffix
370
- Berglunds
371
- syntaxes
372
- manvolnum
373
- AUTOEXEC
374
- Rackham
375
- autoindent
376
- colspec
377
- ifndef
378
- popen
379
- Wieers
380
- XSLTLib
294
+ UnicodeDecodeError
295
+ CalloutList
296
+ SidebarBlocks
297
+ idprefix
298
+ TableRow
299
+ stdout
300
+ monospaced
301
+ walsh
381
302
  pre
382
- coid
383
- params
384
- mediaobjects
385
- JavaScripts
386
- javascripts
387
- sgmlfmt
388
- subsnormal
389
- unchunked
303
+ facilisis
304
+ tzname
305
+ ListParagraph
306
+ partintro
307
+ Windtrainer
308
+ hgignore
309
+ eget
390
310
  sed
391
- html
392
- nunc
393
- RevisionLine
394
- refname
395
- listelement
311
+ userguide
312
+ cras
313
+ zwsp
314
+ keeptogether
315
+ bweb
396
316
  PRS
397
- CONFIG
317
+ Sturmer
398
318
  sem
399
- gzip
400
- specialcharacters
401
- tablepcwidth
402
- codec
403
- DelimitedBlocks
404
- LiteralBlocks
405
- preparadas
319
+ BufNewFile
320
+ SEO
321
+ mdash
322
+ filename
406
323
  psv
324
+ inlinemacro
325
+ bgcolor
326
+ Lavruschenko
407
327
  pts
408
- mydocument
409
- magna
410
- dbhtml
411
- conf
412
- IndentedBlocks
413
- unspaced
414
- fileextension
415
- filetype
416
- URIs
417
- Blackdown
418
- lang
419
- filesystem
420
- taoup
421
- colnumber
422
- Fr�d�rique
423
- urna
424
- colalign
425
- setlocal
328
+ Buenos
329
+ myslidy
330
+ feugiat
331
+ colend
332
+ sprintf
333
+ pyc
334
+ EPUBs
335
+ Zullinger
336
+ AuthorLine
337
+ specialsections
338
+ subsverbatim
339
+ adolescens
426
340
  qui
427
- callout
428
- toclevels
429
- eget
430
- ispum
431
- Maier
432
- http
433
- Greaves
434
- debian
341
+ htmltoc
435
342
  SJR
436
- scriptsdir
437
- bweb
438
- postulant
343
+ biggy
344
+ pgwide
345
+ RevisionDate
346
+ crlf
439
347
  tex
440
- porttitor
441
- cellspacing
442
- setlevel
443
- captionless
444
- Wiki
445
- xreflabel
446
- AttributeEntrys
447
- headdata
348
+ Bolido
349
+ B�lido
350
+ tabsize
351
+ colpcwidth
352
+ Orry
353
+ Nascetur
354
+ onload
448
355
  RTF
449
- DSSSL
450
- fileext
451
- WINA
452
- arabic
453
- fringilla
454
- retab
455
- BackendBlocks
456
- changelog
457
- ChangeLog
356
+ Suraj
357
+ quickstart
358
+ fillchar
359
+ bloggs
458
360
  tis
459
- Ubuntu
460
- sectids
461
- Sommer
462
- LabeledList
463
- ZapfDingbats
464
- hyperlinks
465
- EmailAddress
466
- Cheatsheet
361
+ listdef
362
+ Tsawassen
363
+ Aenean
364
+ postsubs
365
+ src
366
+ lastname
367
+ LastName
368
+ OpenBlocks
467
369
  toc
468
- tbody
469
370
  tmp
470
- endtag
471
- Vasilev
472
- crlf
371
+ Knisley
372
+ massa
473
373
  vel
474
- Iisaka's
475
- localtime
476
- blockmacro
477
- BlockMacro
478
- Xandros
479
- groff
480
- POSIX
481
- Tps
482
- passthroughs
374
+ colstart
375
+ volutpat
376
+ stringparam
377
+ showcomments
483
378
  SVN
484
- Skype
485
- VMiklos
379
+ Tps
486
380
  vih
487
- outlang
488
- xmlto
489
- expandtab
490
- purus
491
- velit
492
- postsubs
493
- bgcolor
494
- lacus
495
- rewriteSystem
496
- Tsawassen
497
- BLONP
381
+ prepended
382
+ ttf
383
+ resx
384
+ startup
385
+ admonitionblock
386
+ coord
387
+ Blackdown
388
+ mainmatter
389
+ Slackware
390
+ tableabswidth
391
+ BackendBlocks
392
+ VMiklos's
498
393
  sys
499
- configfile
500
- Donec
501
- colpcwidth
394
+ doctype
395
+ retrive
396
+ Pavlovitch
502
397
  uri
503
- monospaced
504
- llevar
398
+ wnone
399
+ xhtml
400
+ url
505
401
  utf
506
- subdirectory
507
- HotSpot
508
- hyperlink
509
- DelimitedBlock
510
- Kubuntu
511
- colspecs
512
- Dmitry
402
+ footrow
513
403
  usr
514
- JimiProClasses
515
- srackham
516
- dbtimestamp
404
+ conubia
405
+ Hausmann
406
+ TitleBlock
517
407
  txt
518
- BlockId
519
- passthrough
520
- Berguvsvagen
521
- Berguvsv�gen
522
- noincsearch
523
- TableRow
524
- inlinemediaobject
525
- monospace
526
- whitespace
527
- Lebihan
528
- Jimmac's
529
- xsltproc
530
- coids
531
- resx
532
- NumberedList
533
- colstop
534
- undefine
535
- tagname
536
- ungenerated
537
- homero
538
- IndentedParagraph
539
- IndentedParagraphs
540
- nnoremap
541
- ListItem
542
- autocmd
543
- sectiontitle
544
- unformatted
545
- subsverbatim
546
- Dvips
547
- ItemLabel
548
- specialsections
549
- xml
550
- cdata
551
- emacs
552
- consequat
553
- nulla
554
- ListTerms
555
- docdir
556
- symlink
557
- comspecs
558
- chmod
559
- pagewidth
408
+ lsquo
409
+ addEventListener
560
410
  elit
561
- mandoc
562
- tempfile
411
+ Efros's
412
+ sectiontitle
413
+ CommentLines
414
+ subprocess
415
+ outfile
416
+ blandit
417
+ revisionhistory
418
+ EPUBReader
419
+ Xin
420
+ params
563
421
  undefines
564
- vulputate
565
- Redhat
422
+ Andr�s
423
+ yellowback
424
+ Quisque
425
+ htmlhelp
426
+ HTMLHelp
427
+ cellspacing
428
+ Citeaux
429
+ srackham
430
+ Lulea
431
+ Lule�
432
+ Ubuntu
433
+ xml
434
+ XSLTLib
435
+ headrow
436
+ enim
437
+ haad
438
+ staticfree
439
+ Morbi
440
+ Blauer
441
+ footdata
566
442
  cb
567
- tuple
443
+ bg
444
+ al
568
445
  cd
569
- ASCIIMathML
570
- AsciiMathML
571
- asciimathml
572
- arounds
573
- filename
574
- mansource
575
- eleifend
576
- tableblock
446
+ xsl
447
+ backmatter
448
+ ar
449
+ fils
450
+ linenumbering
577
451
  de
578
- listindex
452
+ backend's
453
+ backends
579
454
  eb
580
- facto
581
455
  br
582
- xmllint
583
- scaledwidth
456
+ Gutenburg
584
457
  cp
585
- xsl
586
458
  fb
587
- docbook
588
- DocBook
589
- stylesheet
590
- pagefile
591
- superscripted
592
- glossdiv
593
- symlinked
594
- Mihai
595
- Pychart
596
- Klum
459
+ fermentum
460
+ fi
461
+ cellcount
597
462
  fo
598
- sgmlformat
599
463
  et
600
464
  eu
601
- gq
465
+ hg
466
+ guimenu
467
+ fugiat
468
+ toclevels
469
+ xzf
602
470
  JB
603
- fprintf
604
- colabswidth
605
- tabsize
606
- smallnew
607
- blocktitles
608
- BlockTitles
609
- localdate
610
- bodyrow
471
+ gq
472
+ refactored
473
+ sgml
474
+ backcolor
475
+ AsciiDoc
476
+ asciidoc
477
+ subslist
611
478
  hs
612
- xzf
613
- nonet
614
- VariableList
615
- adolescens
616
- Obenhuber's
617
- Freshmeat
618
- ftdetect
479
+ hu
480
+ testblock
481
+ Vijay
482
+ xyz
483
+ simpara
619
484
  lf
485
+ defacto
620
486
  mb
621
- Jipsen
622
- ListItems
623
- Xubuntu
624
- SimpleSection
487
+ IndentedBlocks
625
488
  js
489
+ md
490
+ erat
491
+ blogpost
492
+ xsltproc
626
493
  jw
627
- Praesent
494
+ nd
628
495
  ln
629
- libxslt
630
- informalfigure
631
- fils
632
496
  ne
633
- toolchains
634
- xyz
635
- fillchar
636
- BulletedList
497
+ oa
498
+ Terje
637
499
  lt
638
- Delikatessen
500
+ Helvetica
501
+ endtags
502
+ thead
639
503
  ly
640
504
  mv
641
- QuoteBlock
642
- nochunks
643
- MathML
644
- SidebarBlock
645
- topbot
646
- sectnum
647
- Raggett's
648
- formatoptions
649
- colwidth
650
- walsh
505
+ stylesheets
506
+ roff
507
+ YYY
508
+ regex
509
+ os
510
+ config
511
+ slidy
512
+ tabstop
513
+ indentsize
514
+ sb
651
515
  ps
652
- cellcount
653
- mdash
654
- permalink
516
+ runtime
517
+ tcqn
518
+ ePub
519
+ epub
655
520
  td
521
+ px
522
+ vivamus
656
523
  py
657
- AROUT
658
- LiteralBlock
659
- literalblock
660
- sgml
661
- biggy
662
- softtabstop
663
- keeptogether
664
- screenshot
665
- Melis's
666
- uninstall
524
+ getElementById
525
+ addon
526
+ th
527
+ ru
528
+ docname
529
+ ifeval
530
+ uk
667
531
  su
668
- libxml
669
- Mery
670
- mktemp
532
+ expandtab
533
+ autolabel
534
+ LinuxDoc
535
+ linuxdoc
671
536
  tt
672
- blandit
673
- inline
674
- Mart�n
675
- sectionbody
676
- SectionBody
677
537
  VM
678
- conformant
679
- listchars
538
+ Fr�d�rique
539
+ SidebarBlock
540
+ ut
680
541
  wj
681
- refentry
682
- guimenuitem
683
- adipiscing
684
- abc
685
- infile
542
+ Efros
543
+ param
544
+ Movet
545
+ hcol
546
+ manpurpose
547
+ ebooks
548
+ eBooks
549
+ colalign
550
+ debian
551
+ Iaculis
552
+ quis
553
+ eval's
554
+ stylename
555
+ tooltip
556
+ fpdf
557
+ Tiago
558
+ BLAUS
559
+ endtag
560
+ glossdiv
561
+ Lebihan
562
+ ListTerms
563
+ colsep
564
+ indir
565
+ Hajage
566
+ sherlock
567
+ texttag
568
+ ctags
569
+ RPMs
570
+ arabic
571
+ dolorum
572
+ posttype
573
+ eval
574
+ termtag
575
+ passthrough
576
+ BlockTitle
577
+ blocktitle
578
+ blocktitles
579
+ BlockTitles
580
+ tfoot
581
+ Iisaka's
582
+ misevaluations
583
+ frac
584
+ pagewidth
585
+ AUTOEXEC
586
+ rowcount
587
+ ExampleBlocks
588
+ linux
589
+ commodo
590
+ Fernandes
591
+ pretium
592
+ notitle
593
+ manvolnum
594
+ homero
595
+ validators
596
+ listindex
597
+ testasciidoc
598
+ imagedata
599
+ HotSpot
600
+ vimrc
601
+ O'Reilly
602
+ literallayout
686
603
  doctitle
687
- libexslt
688
- ralink
689
- outfile
690
- TableData
691
- listtags
692
- aap
693
- bibendum
694
- necessitatibus
695
- roff
696
- inlinemacro
697
- libboost
698
- bfoobar
699
- Wiese
604
+ holmes
605
+ Dmitry
606
+ backtick
607
+ Bouchers
608
+ strikethrough
609
+ indexterm
610
+ Daitx
611
+ vestibulum
612
+ quote's
700
613
  noteblock
701
- admonitionparagraph
702
- autoconf
703
- refactored
704
- refmiscinfo
705
- tcqn
706
- symlinks
707
- ExampleBlocks
708
- frontmatter
614
+ refentry
615
+ Xubuntu
616
+ captionless
617
+ orgname
618
+ OpenOffice
619
+ asciidocEmphasized
620
+ Dostoyevsky
621
+ chapt
622
+ necessitatibus
623
+ unformatted
624
+ revremark
625
+ Thiago
709
626
  listtag
710
- AttributeLists
627
+ HTMLParser
628
+ docdir
629
+ Gogh
630
+ Jipsen
631
+ JimiProClasses
632
+ sgmlformat
633
+ CommentBlock
634
+ xmllint
635
+ tuples
636
+ headdata
637
+ infty
638
+ presubs
711
639
  Tascii
712
- ifdef
713
- sprintf
640
+ MathML
641
+ nobis
642
+ LOCALCLASSPATH
643
+ Cheatsheet
644
+ mktemp
645
+ Xandros
646
+ rdquo
647
+ Yakshin's
648
+ revhistory
649
+ colnumber
650
+ MEPIS
651
+ bibendum
652
+ Melis's
653
+ expr
654
+ tempfile
655
+ ponderum
656
+ outfilesuffix
657
+ libxml
658
+ tablepcwidth
659
+ chunked
660
+ filesystem
661
+ Mart�n
662
+ popen
663
+ iconsdir
664
+ toolchains
665
+ listchars
666
+ fileext
667
+ emphasizedwords
668
+ smallnew
669
+ linkcss
670
+ colspan
671
+ localtime
672
+ Ruderich
673
+ noincsearch
674
+ Stas
675
+ colspec
676
+ GPLv
677
+ uriStartString
678
+ Hongli
679
+ infile
680
+ suspendisse
681
+ TOCs
682
+ todo
683
+ mimetype
684
+ ridiculus
685
+ volnitsky
686
+ setlevel
687
+ Rosenkraenzer
688
+ bodydata
689
+ java
690
+ Sakellariou
691
+ postulant
692
+ Vasilev
693
+ barchart
694
+ Calixto
695
+ sudo
696
+ coverpage
697
+ starttag
698
+ whitespace
699
+ DelimitedBlock
700
+ foofoo
701
+ retab
702
+ changelog
703
+ ChangeLog
704
+ symlink
705
+ ascii
706
+ ListLabel
707
+ Kleber
708
+ Kl�ber
709
+ popup
710
+ Cerrito
711
+ DocBook's
712
+ fprintf
713
+ mediaobject
714
+ gizmo
715
+ outdir
716
+ getvalue
717
+ callouts
718
+ mollis
719
+ autowidth
720
+ karamazov
721
+ labitur
722
+ xmlto
723
+ Fyodor
724
+ HMTL
725
+ CentOS
726
+ Skype
727
+ POSIX
728
+ builtins
729
+ blockname
730
+ bulleted
731
+ Google
732
+ globals
733
+ Garnett
734
+ porta
735
+ OpenBlock
736
+ colabswidth
737
+ bibliodiv
738
+ Bushuev
739
+ Inguaggiato
740
+ SectionClose
741
+ overline
742
+ paradef
743
+ QuoteBlocks
744
+ undefine
745
+ docdate
746
+ Kurapati
747
+ Zolochevskiy
748
+ lacus
749
+ felis
750
+ backend
751
+ webm
752
+ ListBlock
753
+ LiteralBlock
754
+ literalblock
755
+ href
756
+ metus
757
+ Mozilla
758
+ unstyled
759
+ pagebreak
760
+ VariableList
761
+ LiteralBlocks
762
+ Donec
763
+ dbook
764
+ BLONP
765
+ asciimath
766
+ interesset
767
+ pellentesque
768
+ formatlistpat
769
+ IMGs
770
+ attributeentry
771
+ AttributeEntry
772
+ Zuckschwerdt
773
+ autoindent
774
+ sectids
775
+ manname
776
+ PostScript
777
+ jbloggs
778
+ epubcheck
779
+ README
780
+ colstop
781
+ LiteralParagraphs
782
+ tableblock
783
+ slideshows
784
+ primis
785
+ tuple
786
+ Rackham
787
+ admonitionparagraph
788
+ mantitle
789
+ init
790
+ VerbatimBlocks
791
+ imperdiet
792
+ refsynopsisdiv
793
+ emacs
794
+ consetetur
795
+ JIMI
796
+ newtables
797
+ DocBook
798
+ docbook
799
+ callout
800
+ fileextension
801
+ programlisting
802
+ outlang
803
+ QuoteBlock
804
+ chmod
805
+ posattrs
806
+ subdirectories
807
+ RevisionRemark
808
+ TableHeader
809
+ slideshow
810
+ Mihai
811
+ KeyboardInterrupt
812
+ justo
813
+ hexdump
814
+ sectionbody
815
+ SectionBody
816
+ nnoremap
817
+ VerbatimBlock
818
+ verbatimblock
819
+ BulletedList
820
+ html
821
+ unchunked
822
+ Gouichi
823
+ Alexey
824
+ StringIO
825
+ wordpress
826
+ nonet
827
+ tagname
828
+ gzip
829
+ corpname
830
+ precompiled
831
+ rewriteURI
832
+ colcount
833
+ fringilla
834
+ Gentoo
835
+ mattis
836
+ printf
837
+ hsides
838
+ imagesdir
839
+ callto
840
+ URIs
841
+ lang
842
+ basebackend
843
+ urna
844
+ rowsep
845
+ checksums
846
+ blockmacro
847
+ BlockMacro
848
+ mailto
849
+ Sagittis
850
+ plugins
851
+ http
852
+ pychart
853
+ fepub
854
+ Wiki
855
+ euismod
856
+ arounds
857
+ WINA
858
+ superscripted
859
+ PassthroughBlock
860
+ footrows
861
+ configfile
862
+ misspelt
863
+ namespace
864
+ reftext
865
+ formatoptions
866
+ halign
867
+ rsquo
868
+ AROUT
869
+ Wiese
870
+ bodyrow
871
+ navMap
872
+ listtags
873
+ mauris
874
+ ListingBlocks
875
+ TableUnderline
876
+ bookinfo
714
877
  Vajna
715
- nbsp
878
+ upperalpha
879
+ xmldecl
880
+ tellus
881
+ EmailAddress
716
882
  qanda
883
+ hyperlink
884
+ screenshot
717
885
  noout
718
- massa
719
- asciidoc
720
- AsciiDoc
886
+ Wieers
887
+ Artem
888
+ startDocument
889
+ ifdef
890
+ Shanahan's
721
891
  manmanual
722
- TableBody
723
- realpath
892
+ Konqueror
893
+ firstname
894
+ FirstName
895
+ latexmathml
896
+ LaTeXMathML
897
+ sectnum
898
+ BlockMacros
899
+ cceeff
900
+ unfloat
901
+ snabbkop
902
+ snabbk�p
903
+ NumberedList
904
+ everti
905
+ multi
906
+ cubilia
907
+ manpage
908
+ conformant
909
+ AttributeEntries
910
+ tablewidth
911
+ LabeledList
912
+ monospace
913
+ AsciiDocError
914
+ olink
915
+ softtabstop
916
+ Ghostscript
917
+ https
918
+ dbtimestamp
919
+ ebuild
920
+ rewritePrefix
921
+ BOLID
922
+ PUBReader
923
+ inlinemediaobject
924
+ nochunks
925
+ newlists
926
+ mediaobjects
927
+ endif
928
+ natively
929
+ mkdir
930
+ sodales
931
+ BONAP
932
+ ItemContinuation
933
+ tyger
934
+ upperroman
935
+ RevisionInfo
936
+ Berglunds
937
+ egestas
938
+ nabc
939
+ symlinked
940
+ Sommer
941
+ Klum
942
+ Obenhuber's
943
+ revdate
944
+ stylesheet
945
+ eleifend
946
+ ListTerm
947
+ augue
724
948
  loweralpha
725
- labitur
726
- prepended
727
- builtins
728
- TitleName
729
- formulae
730
- unstyled
731
- Citeaux
949
+ subdirectory
950
+ consectetuer
951
+ bookmarked
952
+ G�mez
953
+ Kubuntu
954
+ LaTeX
955
+ litora
956
+ FreeBSD
732
957
  Araquil
733
- lobortis
958
+ setuptools
959
+ bfoobar
960
+ lacinia
961
+ entrytag
962
+ muellner
963
+ ifndef
964
+ latin
965
+ Woodall
966
+ revnumber
967
+ labeltag
968
+ toolchain
969
+ cellpadding
970
+ entrytbl
971
+ Ornare
972
+ authorinitials
973
+ JavaScripts
974
+ javascripts
975
+ undefining
976
+ leveloffset
977
+ CustomBlock
978
+ BufRead
979
+ specialwords
980
+ libexslt
981
+ subsnormal
982
+ fxhtml
983
+ Builtin
984
+ hardcoded
985
+ Mery
986
+ utils
987
+ subclassify
988
+ stylesdir
989
+ unsets
990
+ ipsum
991
+ namespaced
992
+ FilterBlocks
993
+ Julien
994
+ tempor
995
+ WINNT
996
+ boolean
997
+ TableData
998
+ pagefile
999
+ docfile
1000
+ libboost
1001
+ Praesent
1002
+ else's
1003
+ preparadas
1004
+ scriptsdir
1005
+ syntaxes
1006
+ R�sten
1007
+ rowspan
1008
+ headrows
1009
+ charset
1010
+ burtoogle
1011
+ Changjian
1012
+ Ashworth
1013
+ nbsp
1014
+ lowerroman
1015
+ Freshmeat
1016
+ dbhtml
1017
+ manversion
1018
+ TableBody
1019
+ abc
1020
+ aliquam
1021
+ llevar
1022
+ aap
1023
+ unspaced
1024
+ attrlist
1025
+ Bazon
1026
+ attrname
1027
+ Forsterstr
1028
+ Rhoncus
1029
+ Rutrum
1030
+ Redhat
1031
+ datadir
1032
+ Kumar
1033
+ IndentedParagraphs
1034
+ Berguvsv�gen
1035
+ Berguvsvagen
1036
+ executables
1037
+ tabledef
1038
+ ftdetect
1039
+ Greaves
1040
+ SimpleList
1041
+ superscripting
1042
+ baz
1043
+ lorem
1044
+ Comidas
1045
+ bodyrows
1046
+ Fyodorovitch
1047
+ topbot
1048
+ greek
1049
+ comspec
1050
+ refmiscinfo
1051
+ firefox
1052
+ lectus
1053
+ JavaHelp
1054
+ unescaped
1055
+ mydoc
1056
+ MiddleName
1057
+ middlename
1058
+ Jimmac's