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
@@ -29,13 +29,15 @@ multi-page XHTML output support and support for multiple templates.
29
29
  * hpricot (`gem install hpricot`)
30
30
  * Python (because Asciidoc is written in Python)
31
31
  * [GNU Source-highlight](http://www.gnu.org/software/src-highlite/), if you
32
- want syntax highlighting support
32
+ want syntax highlighting support. If you're on OS X then it's not necessary
33
+ to install this yourself; we've bundled a precompiled source-highlight
34
+ binary for OS X for your convenience.
33
35
 
34
36
  ## Installation
35
37
 
36
38
  Run the following command as root:
37
39
 
38
- gem install FooBarWidget-mizuho
40
+ gem install mizuho
39
41
 
40
42
  ## Usage
41
43
 
data/Rakefile CHANGED
@@ -1,41 +1,4 @@
1
- require 'rake/gempackagetask'
2
-
3
1
  desc "Run unit tests"
4
2
  task :test do
5
3
  ruby "-S spec -f s -c test/*_spec.rb"
6
4
  end
7
-
8
- desc "Build a gem and install it"
9
- task :install => :gem do
10
- File.read("mizuho.gemspec") =~ /s\.version = \"(.*?)\"/
11
- version = $1
12
- ruby "-S gem install mizuho-#{version}.gem"
13
- end
14
-
15
- spec = Gem::Specification.new do |s|
16
- s.name = "mizuho"
17
- s.version = "0.9.6"
18
- s.summary = "Mizuho documentation formatting tool"
19
- s.email = "hongli@phusion.nl"
20
- s.homepage = "http://github.com/FooBarWidget/mizuho/tree/master"
21
- s.description = "A documentation formatting tool. Mizuho converts Asciidoc input files into nicely outputted HTML, possibly one file per chapter. Multiple templates are supported, so you can write your own."
22
- s.has_rdoc = false
23
- s.executables = ["mizuho", "mizuho-asciidoc"]
24
- s.authors = ["Hongli Lai"]
25
- s.add_dependency("hpricot")
26
-
27
- s.files = FileList[
28
- "README.markdown", "LICENSE.txt", "Rakefile",
29
- "bin/*",
30
- "lib/**/*",
31
- "test/*",
32
- "templates/*",
33
- "asciidoc/**/*",
34
- "source-highlight/**/*"
35
- ]
36
- end
37
-
38
- Rake::GemPackageTask.new(spec) do |pkg|
39
- pkg.need_zip = false
40
- pkg.need_tar = false
41
- end
@@ -1,33 +1,24 @@
1
1
  Bugs and Known Problems
2
2
 
3
- version 8.3.3, 2 January 2009
3
+ version 8.6.5, 20 May 2011
4
4
  __________________________________________________________________
5
5
 
6
6
  1. AsciiDoc
7
7
 
8
+ * Configuration attribute entries are not passed to table asciidoc
9
+ filters because configuration attribute entries cannot be passed to
10
+ the --attributes command-line parameter.
8
11
  * A benign warning with will become a reserved keyword in Python 2.6
9
- sometimes occurs when using Python 2.5 -- it's harmless and will
12
+ sometimes occurs when using Python 2.5 its harmless and will
10
13
  disappear with Python 3.
11
- * The toc attribute will be ignored if it's set in a custom user or
12
- document configuration file. This is because the default
13
- configuration file containing the document [header] is sourced
14
- before custom configuration files and the toc attribute is
15
- processed using conditional inclusion macros.
16
14
  * Reported line numbers in diagnostic messages are sometimes wrong.
17
- * Embedding open brace characters { in argument values can cause
18
- incorrect argument substitution.
19
- * Attribute references in macro attribute lists can't be unescaped
15
+ * Attribute references in macro attribute lists can’t be unescaped
20
16
  (with the exception of attribute list entry {0}).
21
17
  * Section numbering is incorrect when outputting HTML from a
22
18
  multi-part book type document. This is not a biggy since multi-part
23
19
  books are generally processed to DocBook.
24
20
  * A row of apostrophes in an inline context throws AsciiDoc into an
25
- endless loop.
26
- * Multiple comma separated command names in the manpage NAME section
27
- translate to a single DocBook refname instead of multiple refname
28
- elements.
29
- * Escaping quoted text and macros is sometimes tricky owing to some
30
- macro and quoting ambiguities.
21
+ endless loop. The problem seems to be in the input file Reader.
31
22
  __________________________________________________________________
32
23
 
33
24
  2. dblatex
@@ -35,5 +26,5 @@
35
26
  See ./dblatex/dblatex-readme.txt.
36
27
  __________________________________________________________________
37
28
 
38
- Version 8.3.3
39
- Last updated 2009-01-02 12:45:15 NZDT
29
+ Version 8.6.5
30
+ Last updated 2011-05-02 10:15:25 NZST
@@ -3,29 +3,20 @@ Bugs and Known Problems
3
3
 
4
4
  AsciiDoc
5
5
  --------
6
+ - Configuration attribute entries are not passed to table asciidoc
7
+ filters because configuration attribute entries cannot be passed to
8
+ the `--attributes` command-line parameter.
6
9
  - A benign warning 'with will become a reserved keyword
7
10
  in Python 2.6' sometimes occurs when using Python 2.5 -- it's
8
11
  harmless and will disappear with Python 3.
9
- - The `toc` attribute will be ignored if it's set in a custom user or
10
- document configuration file. This is because the default
11
- configuration file containing the document `[header]` is sourced
12
- before custom configuration files and the `toc` attribute is
13
- processed using conditional inclusion macros.
14
12
  - Reported line numbers in diagnostic messages are sometimes wrong.
15
- - Embedding open brace characters `{` in argument values can cause
16
- incorrect argument substitution.
17
13
  - Attribute references in macro attribute lists can't be unescaped
18
- (with the exception of attribute list entry `\{0}`).
14
+ (with the exception of attribute list entry `{0}`).
19
15
  - Section numbering is incorrect when outputting HTML from a
20
16
  multi-part book type document. This is not a biggy since multi-part
21
17
  books are generally processed to DocBook.
22
18
  - A row of apostrophes in an inline context throws AsciiDoc into an
23
- endless loop.
24
- - Multiple comma separated command names in the manpage NAME section
25
- translate to a single DocBook `refname` instead of multiple
26
- `refname` elements.
27
- - Escaping quoted text and macros is sometimes tricky owing to some
28
- macro and quoting ambiguities.
19
+ endless loop. The problem seems to be in the input file 'Reader'.
29
20
 
30
21
  dblatex
31
22
  -------
@@ -1,21 +1,1089 @@
1
1
  AsciiDoc ChangeLog
2
2
 
3
- version 8.3.3, 2 January 2009
3
+ version 8.6.5, 20 May 2011
4
4
  __________________________________________________________________
5
5
 
6
- 1. Version 8.3.3 (2009-01-02)
6
+ 1. Version 8.6.5 (2011-05-08)
7
7
 
8
- This release supercedes 8.3.2.
8
+ Additions and changes
9
+ * A new flask theme for xhtml11 and html5 backends. A shameless
10
+ knock-off of the [1]Flask website styling.
11
+ * Added HTML 5 article with toc2 table of contents to the example on
12
+ the AsciiDoc website home page.
13
+ * Added filters and topics help topics. Fixed documentation errors in
14
+ help text. Patch submitted by Lionel Orry, see:
15
+ [2]http://groups.google.com/group/asciidoc/browse_thread/thread/9da
16
+ 9d48a6461ff14
17
+ * Pass parent configuration files, command-line attributes and header
18
+ attributes to table asciidoc filters. Based on patch submitted by
19
+ Simon Ruderich, see:
20
+ [3]http://groups.google.com/group/asciidoc/browse_thread/thread/5c7
21
+ 92cbb395b753b
22
+ * Allow a title attribute entry in the document header so that HTML
23
+ backends can set the title element separately from the displayed
24
+ document title (the doctitle attribute).
25
+ * Pass lang attribute to asciidoc table style filter. Patch submitted
26
+ by Simon Ruderich, see:
27
+ [4]http://groups.google.com/group/asciidoc/browse_thread/thread/e21
28
+ 00b7cb29283ce
29
+ * xhtml11,html5: Added toc2 attribute which generates a scrollable
30
+ table of contents in the left hand margin. Based on customized CSS
31
+ written by Suraj Kurapati, see
32
+ [5]http://groups.google.com/group/asciidoc/browse_thread/thread/c5e
33
+ 30ee5555877f5
34
+ * Added asciidoc-confdir intrinsic attribute which expands to the
35
+ global conf directory.
36
+ * Documented that you can specify multiple CSS files with the a2x(1)
37
+ --stylesheet command option. See:
38
+ [6]http://groups.google.com/group/asciidoc/browse_thread/thread/baf
39
+ 3218551d05a05
40
+ * Improved xhtml11 backend’s table of contents generation latency.
41
+ Patch submitted by Hongli Lai. See:
42
+ [7]http://groups.google.com/group/asciidoc/browse_thread/thread/5a7
43
+ fe64fbfd65ad
44
+ * Added html5 backend.
45
+ * For consistency converted all DOS formatted configuration and text
46
+ files to UNIX format.
47
+ * html4: Added ability to use role attribute with most block
48
+ elements. Patch contributed by Simon Ruderich. See
49
+ [8]http://groups.google.com/group/asciidoc/browse_thread/thread/562
50
+ 0ba634fdb030a
51
+ * Added Dutch language configuration file and accompanying test file
52
+ (contributed by Dag Wieers, see
53
+ [9]http://groups.google.com/group/asciidoc/browse_thread/thread/f96
54
+ 9b9ce987d7f5d).
55
+ * Configuration files are loaded in two passes when the -e
56
+ command-line option is used (the same behavior as when the -e
57
+ option is not used). Patch submitted by haad. See
58
+ [10]http://groups.google.com/group/asciidoc/browse_thread/thread/cd
59
+ 0f47495fd04181 and
60
+ [11]http://code.google.com/p/asciidoc/issues/detail?id=6&q=label%3A
61
+ Priority-Medium
62
+ * Documented how to include embedded fonts in an EPUB document.
63
+ * a2x: Added .<ext>=<mimetype> resource specifier syntax.
64
+ * a2x: Enable admonition icons in example EPUBs.
65
+ * a2x: allow environment variables and tilde home directories in
66
+ resource manifest files.
67
+ * a2x: don’t process non-existent resource directories.
68
+ * a2x: assume resource option is a directory if the name ends with a
69
+ directory separator.
70
+ * a2x: Added a new syntax to the --resource option specifier which
71
+ allows the destination path to be specified.
72
+ * a2x: Copy resources referenced in the OPF and resources referenced
73
+ by the generated HTML (in theory DocBook XSL should ensure they are
74
+ identical but this is not always the case e.g.
75
+ [12]http://sourceforge.net/tracker/?func=detail&atid=373747&aid=285
76
+ 4075&group_id=21935).
77
+ * Drop border from callout list image links.
78
+ * html4: Moved manpage NAME section out of header so that the name
79
+ section is rendered when the asciidoc(1) --no-header-footer option
80
+ is specified (so that manpages processed blogpost include the NAME
81
+ section).
82
+ * Vim syntax highlighter: TODO markers now appear in list items and
83
+ literal paragraphs and blocks.
84
+ * Constrained quotes can now be bounded on the left by a } character.
85
+ See:
86
+ [13]http://groups.google.com/group/asciidoc/browse_thread/thread/b2
87
+ 4cc3362f35b801
88
+ * Added text-decoration roles (underline, overline, line-through,
89
+ blink) for xhtml11 and html5 outputs.
90
+
91
+ Bug fixes
92
+ * FIXED: epubcheck 1.1 previously issued a warning for files not
93
+ registered in the manifest (epubcheck 1.0.5 did not). This resulted
94
+ in a problem compiling the adventures-of-sherlock-holmes.txt
95
+ example (the underline.png resource was not in the manifest).
96
+ __________________________________________________________________
97
+
98
+ 2. Version 8.6.4 (2011-02-20)
99
+
100
+ Additions and changes
101
+ * Added text foreground and background color along with text size CSS
102
+ styles for XHTML outputs, see
103
+ [14]http://www.methods.co.nz/asciidoc/userguide.html#X96.
104
+ * Vim syntax highlighter: highlight macros that start with an
105
+ attribute reference (a common idiom).
106
+ * Vim syntax highlighter: highlight attribute references in macro
107
+ attribute lists.
108
+ * Attribute entries can be used to set configuration markup
109
+ templates.
110
+ * Double-width East Asian characters in titles now correctly match
111
+ the title underline widths. Submitted by Changjian Gao (see
112
+ [15]http://groups.google.com/group/asciidoc/browse_thread/thread/77
113
+ f28b0dfe60d262).
114
+ * Implemented [16]asciidoc(1) filter commands, see:
115
+ [17]http://groups.google.com/group/asciidoc/browse_thread/thread/40
116
+ c64cd33ee1905c
117
+ * User’s home directory now calculated in a platform independent
118
+ manner.
119
+ * Added double-quote characters to French language file. Patch
120
+ contributed Yves-Alexis Perez, see:
121
+ [18]http://groups.google.com/group/asciidoc/browse_thread/thread/e1
122
+ 5282f072413940
123
+ * Vim Syntax highlighter: Highlight closing OpenBlocks which
124
+ immediately follow a literal paragraph.
125
+ * Changed UNIX /dev/null to OS independent os.devnull in filters
126
+ code. Suggested by Henrik Maier:
127
+ [19]http://groups.google.com/group/asciidoc/browse_thread/thread/5a
128
+ c8e8ea895147e9
129
+ * Vim syntax highlighter: Single and double quoted text now
130
+ highlights correctly when preceded by an attributes list.
131
+ * Added Ukrainian language file (lang-uk.conf). Added double-quote
132
+ characters to Russian language file.conf). Patches contributed by
133
+ Lavruschenko Oleksandr, see
134
+ [20]http://groups.google.com/group/asciidoc/browse_thread/thread/e1
135
+ 5282f072413940
136
+ * Single and double quote characters are now set using the {lsquo},
137
+ {rsquo}, {ldquo} and {rdquo} attributes. This makes is easy to
138
+ customise language specific quotes. See:
139
+ [21]http://groups.google.com/group/asciidoc/browse_thread/thread/e1
140
+ 5282f072413940
141
+ * Implemented conf-files attribute to allow configuration files to be
142
+ specified in the source document. Suggested by Lex Trotman, see:
143
+ [22]http://groups.google.com/group/asciidoc/browse_thread/thread/b1
144
+ 1066a828ab45b9
145
+
146
+ Bug fixes
147
+ * FIXED: Auto-generated section title ids are now Unicode aware.
148
+ * FIXED: Setting quotes configuration entries using document
149
+ attribute entries failed if the attribute entry was not in the
150
+ document header. See:
151
+ [23]http://groups.google.com/group/asciidoc/browse_thread/thread/a1
152
+ dd0562dee8b939
153
+ * FIXED: If the input and output file names were different then the
154
+ output file name was incorrectly used to synthesize docinfo file
155
+ names. Reported by Christian Zuckschwerdt.
156
+ * FIXED: An error can occur when more than one consecutive quotes are
157
+ defined as a blank string. Reported by Peggy Russell.
158
+ * FIXED: Encoding error in automatically generated author initials.
159
+ Patch submitted by Xin Wang. See:
160
+ [24]http://groups.google.com/group/asciidoc/browse_thread/thread/f4
161
+ 4615dca0b834e9
162
+ __________________________________________________________________
163
+
164
+ 3. Version 8.6.3 (2010-11-14)
165
+
166
+ Additions and changes
167
+ * Added and unbreakable option to bulleted and numbered lists (thanks
168
+ to Henrik Maier for this patch).
169
+ * Added ifeval::[] system macro (thanks to Henrik Maier for
170
+ suggesting this feature).
171
+ * The image scale attribute sets the DocBook imagedata element scale
172
+ attribute. Patch submitted by Henrik Maier.
173
+ * DocBook preface, colophon and dedication style section titles now
174
+ work. Based on patch submitted by Henrik Maier.
175
+ * a2x: Do not inject xsltproc parameters if they were specified on
176
+ the command-line (parameter double-ups generate xsltproc Global
177
+ parameter already defined errors).
178
+ * a2x: Refactored xsltproc parameter injection.
179
+ * a2x: articles chunked at section level by default.
180
+ * attributes, titles and specialcharacters sections are now read from
181
+ the local asciidoc.conf file before the header is parsed. This
182
+ fixes a regression problem. See
183
+ [25]http://groups.google.com/group/asciidoc/browse_thread/thread/1b
184
+ 3f88f1f8118ab3
185
+ * Document header attributes take precedence over configuration file
186
+ attributes.
187
+ * Refactored music, graphviz and latex filter configurations.
188
+ * Refactored source filter configuration and added literal paragraph
189
+ source style.
190
+ * Separated paragraph styles from paragraph syntax — any style can be
191
+ applied to any syntax.
192
+ * Added listing and quote paragraph styles.
193
+ * Renamed paragraph default style to normal.
194
+ * Updated --help option text.
195
+ * a2x: The asciidoc_opts, dblatex_opts, fop_opts and xsltproc_opts
196
+ command-line options can be specified multiple times. This makes
197
+ embedding multiple a2x options in document headers easier to manage
198
+ and less error prone.
199
+ * Added ASCIIMathML and LaTeXMathML support to slidy backend.
200
+ * Pass the encoding attribute to the Pygments source highlight filter
201
+ command.
202
+ * a2x: HTML Help .hhk file named after AsciiDoc source file.
203
+ * a2x: Added --xsl-file option to allow custom XSL stylesheets to be
204
+ specified.
205
+ * Make builds the man pages. Patch submitted by Sebastian Pipping.
206
+ See
207
+ [26]http://groups.google.com/group/asciidoc/browse_thread/thread/c2
208
+ 1c2902c29bae64
209
+
210
+ Bug fixes
211
+ * FIXED: Sometimes double backquotes were misinterpreted as inline
212
+ literal macros. See:
213
+ [27]http://groups.google.com/group/asciidoc/browse_thread/thread/f5
214
+ 10ea82a88aaee8
215
+ * FIXED: Regression in 8.6.2: command-line attributes were not
216
+ available to the global asciidoc.conf.
217
+ * FIXED: Postponed document title substitutions until backend conf
218
+ files have been loaded (8.6.2 regression). See
219
+ [28]http://groups.google.com/group/asciidoc/browse_thread/thread/42
220
+ b63ce90c2563b8
221
+ * FIXED: The XSL Stylesheets customizations were preventing chapter
222
+ and section level TOCs from being generated when using XSL
223
+ Stylesheets via a2x. See
224
+ [29]http://groups.google.com/group/asciidoc/browse_thread/thread/42
225
+ b63ce90c2563b8
226
+ * FIXED: “UnicodeDecodeError: 'ascii' codec can’t decode byte” error.
227
+ This error is due to a limitation in the Python HTMLParser module,
228
+ see: [30]http://bugs.python.org/issue3932
229
+ * FIXED: Broken --no-conf option (8.6.2 regression).
230
+ * FIXED: Regression in 8.6.2: configuration attribute entries set in
231
+ the document header may cause a FAILED: incomplete configuration
232
+ files error.
233
+ * FIXED: html4: corrected self closed meta tags.
234
+ * FIXED: a2x regression in 8.6.2: HTML Help .hhp file name had
235
+ reverted to default name instead of the AsciiDoc source file name.
236
+ See:
237
+ [31]http://groups.google.com/group/asciidoc/browse_thread/thread/de
238
+ dc961b23e9ac56
239
+ * FIXED: Attributes in man page title caused it to be dropped
240
+ resulting in invalid DocBook output.
241
+ * FIXED: make uninstall now deletes the asciidoc.1 and a2x.1 man
242
+ pages.
243
+ __________________________________________________________________
244
+
245
+ 4. Version 8.6.2 (2010-10-03)
246
+
247
+ Additions and changes
248
+ * docbook45: Enclosed bibliographic lists in a bibliodiv — you can
249
+ now include block titles with bibliographic lists.
250
+ * Added optional keywords, description and title document header
251
+ meta-data attributes to HTML backends for SEO.
252
+ * AttributeEntry values can span multiple lines with a ' +' line
253
+ continuation.
254
+ * Added slidy backend (based on Phillip Lord’s slidy backend
255
+ [32]https://phillordbio-asciidoc-fixes.googlecode.com/hg/).
256
+ * Implemented OpenBlock partintro style for book part introductions.
257
+ * Comment lines substitute special characters only.
258
+ * Backend specific global configuration files (all except
259
+ asciidoc.conf) are loaded after the header has been parsed —
260
+ virtually any attribute can now be specified in the document
261
+ header.
262
+ * xhtml11: Volnitsky theme: allow bulleted lists to have intervening
263
+ children.
264
+ * xhtml11: refactored CSS font-family rules to start of file.
265
+ * xhtml11: list bullets colored gray.
266
+ * ifdef and ifndef system block macros accept multiple attribute
267
+ names: multiple names separated by commas are ored; multiple
268
+ attribute names separated by pluses are anded.
269
+ * xhtml11: Volnitsky theme: set max-width on labeled lists.
270
+ * Vim syntax highlighter: Entities inside quoted text are now
271
+ highlighted.
272
+ * Added role and id attributes to HTML outputs generated by
273
+ OpenBlocks.
274
+ * Allow floating titles to generate h1 (level 0) titles in HTML
275
+ outputs.
276
+ * Added a start attribute to numbered lists to set the start number.
277
+ See:
278
+ [33]http://groups.google.com/group/asciidoc/browse_thread/thread/c1
279
+ 4a4c3b1e4f6dc5
280
+ * Added two more docinfo attributes docinfo1 and docinfo2 to allow
281
+ and control inclusion of a shared docinfo file. See
282
+ [34]http://groups.google.com/group/asciidoc/browse_thread/thread/c9
283
+ 48697943432e24
284
+ * Vim syntax highlighter highlights multi-name conditional
285
+ attributes.
286
+ * LaTeX backend patch submitted by Andreas Hermann Braml (see
287
+ [35]http://groups.google.com/group/asciidoc/browse_thread/thread/1c
288
+ 415fc4540ce5e5).
289
+ * Implemented backend aliases; renamed docbook.conf to docbook45.conf
290
+ and aliased docbook45 backend to docbook; aliased xhtml11 to html.
291
+
292
+ Bug fixes
293
+ * FIXED: Filter commands located in filter directories local to the
294
+ source document that where not in the search PATH where not found.
295
+ * FIXED: Volnitsky theme: Verseblock font set normal instead of
296
+ monospaced.
297
+ * FIXED: xhtml11: Callout icons were not rendered as Data URIs when
298
+ icons and data-uri attributes were specified.
299
+ * FIXED: Long standing bug: nested include macros did not restore the
300
+ parent document infile and indir attributes. See:
301
+ [36]http://groups.google.com/group/asciidoc/browse_thread/thread/87
302
+ 12a95e95a292a7
303
+ * FIXED: html4: set preamble ID anchor.
304
+ * FIXED: xhtml11: dropped unusable id and role attributes from
305
+ preamble template.
306
+ * FIXED: Bug in multi-name conditional attributes e.g. {x,y#} fails
307
+ if x or y is undefined.
308
+ * FIXED: latex filter not being installed by Makefile. Thanks to
309
+ Grant Edwards for this patch. See
310
+ [37]http://groups.google.com/group/asciidoc/browse_thread/thread/c4
311
+ 427a3902d130a8
312
+ * FIXED: a2x: Long-standing bug in a2x which always passes
313
+ --string-param navig.graphics 0 to xsltproc, regardless of whether
314
+ icons are enabled or not. Reported by Michael Wild:
315
+ [38]http://groups.google.com/group/asciidoc/browse_thread/thread/59
316
+ a610068e4acb58
317
+ __________________________________________________________________
318
+
319
+ 5. Version 8.6.1 (2010-08-22)
320
+
321
+ Additions and changes
322
+ * a2x: --resource-dir option renamed to --resource.
323
+ * a2x: --resource option accepts both file and directory names.
324
+ * a2x: Added -m,--resource-manifest option.
325
+ * Added Vim syntax highlighting for quote attribute lists.
326
+ * Load asciidoc.conf from all configuration directories before any
327
+ other configuration files. This ensures that attributes used for
328
+ conditional inclusion are set before backend configuration files
329
+ are processed. Previously if you wanted to control global conf file
330
+ inclusion your only choice was to modify the global asciidoc.conf
331
+ file.
332
+ * AsciiDoc Quote element attributes have been simplified and
333
+ generalized — positional color and size attributes and named role
334
+ attribute have been replaced by a single positional attribute.
335
+
336
+ Bug fixes
337
+ * FIXED: testasciidoc.py: BACKEND command argument was being ignored.
338
+ * FIXED: Broken docinfo file functionality in html4 and xhtml11
339
+ backends (previously the docinfo file was included in the body
340
+ instead of the header).
341
+
342
+ 5.1. Regression issues
343
+
344
+ This release breaks compatibility with quoted element positional color
345
+ and size attributes (HTML backends). To revert to the deprecated quote
346
+ behavior define the deprecated-quotes attribute in the global
347
+ asciidoc.conf file or on the command-line. For a more detailed
348
+ explanation of the rationale behind this change see
349
+ [39]http://groups.google.com/group/asciidoc/browse_thread/thread/b22603
350
+ bfb879418c.
351
+ __________________________________________________________________
352
+
353
+ 6. Version 8.6.0 (2010-08-16)
354
+
355
+ Additions and changes
356
+ * The AsciiDoc distribution can now be built “out of the box” from
357
+ the distribution tarball or the Mercurial repository (provided you
358
+ have the requisite build applications installed).
359
+ * The global configuration files directory is ignored by both
360
+ asciidoc and a2x if AsciiDoc configuration files are installed in
361
+ the same directory as the asciidoc executable. This change allows
362
+ both a system wide copy and multiple local copies of AsciiDoc to
363
+ coexist on the same host PC.
364
+ * CSS quirks mode is no longer the default xhtml11 output
365
+ ([40]http://groups.google.com/group/asciidoc/browse_thread/thread/1
366
+ c02d27d49221aa2).
367
+ * Relaxed anchor ID name syntax
368
+ ([41]http://groups.google.com/group/asciidoc/browse_thread/thread/5
369
+ f3e825c74ed30c).
370
+ * Added document files: doc/epub-notes.txt,
371
+ doc/publishing-ebooks-with-asciidoc.txt.
372
+ * a2x: If all other resource locations are exhausted then recursively
373
+ search directories named images and stylesheets in the asciidoc
374
+ configuration files directory.
375
+ * a2x: options can also be set in the AsciiDoc source file. If the
376
+ source file contains a line beginning with // a2x: then the
377
+ remainder of the line will be treated as a2x command-line options.
378
+ * Added dblatex table-width processing instruction — tables generated
379
+ by dblatex now observe the AsciiDoc table width as a percentage
380
+ (thanks to Gustav Broberg for suggesting this enhancement).
381
+ * a2x: Don’t exit if the --epubcheck option is set and epubcheck is
382
+ missing, issue warning and continue.
383
+ * Added a global plaintext attribute for dealing with large amounts
384
+ of imported text.
385
+ * The author name format has been relaxed, if the the author does not
386
+ match the formal specification then it is assigned to the firstname
387
+ attribute (previously asciidoc exited with an error message).
388
+ * FAQ and documentation updates.
389
+ * Refactored chunked.xsl and epub.xsl files.
390
+ * Exchanged article.epub for more relevant book.epub on website.
391
+ * Put asciidoc.epub User Guide on website.
392
+ * a2x: Chunking EPUB and HTML outputs set to a per chapter basis and
393
+ the first chapter is separate from preceding contents.
394
+ * Changed dates format in example article and books to suppress EPUB
395
+ validation error.
396
+ * Added style and role CSS classes to xhtml11 section templates.
397
+ * Added the role element to xhtml11 backend block templates.
398
+ * Suppressed md5 module deprecation warning from music and Graphviz
399
+ filters.
400
+ * Pygments ([42]http://pygments.org/) option added to source code
401
+ highlight filter. Based on Pygments source code filter written by
402
+ David Hajage
403
+ ([43]http://groups.google.com/group/asciidoc/browse_thread/thread/d
404
+ 8d042f5a3021369/8934ebbb8cb7144b).
405
+ * xhtml11: Added a new theme (volnitsky). Written and contributed by
406
+ Leonid V. Volnitsky.
407
+ * xhtml11: Set body element class name to document type.
408
+ * Added refentryinfo element and contents (including revdate) to man
409
+ page DocBook output. Man pages are now dated using the revdate
410
+ attribute value if it has been defined. Based on patch supplied by
411
+ Rainer Muller
412
+ [44]http://groups.google.com/group/asciidoc/browse_frm/thread/319e5
413
+ cd94493e330/3fcb83fab067af42.
414
+ * Added {template:...} system attribute.
415
+ * Table of contents attribute toc can now be specified in the
416
+ document header.
417
+ * Reimplemented music and latex filter -m option functionality when
418
+ the input is stdin using MD5 checksums.
419
+ * Added latex filter.
420
+ * Added auto file name generation to image generating filters
421
+ (latex,music, graphviz).
422
+ * Added counter2 and set2 system attributes (to implement image auto
423
+ file name generation).
424
+ * Undefined attribute in filter command generates error but does not
425
+ exit.
426
+ * Attribute substitution proceeds from start line to end line
427
+ (previously was in reverse order which was really confusing).
428
+ * Tidied up music filter code:
429
+ + Format option is optional and default to abc unless Lilypond
430
+ notation detected.
431
+ + The -m option does not apply to stdin input.
432
+ * Added paragraph styles to music and graphviz filters.
433
+ * Documented dynamic template names. 753: Graphviz filter can now
434
+ generate SVG format images. Patch submitted by Elmo Todurov, see:
435
+ [45]http://groups.google.com/group/asciidoc/browse_frm/thread/fe9b3
436
+ 3d8f5f1e0af The xhtml11 SVG Graphviz template marked EXPERIMENTAL.
437
+ No SVG support for other backends.
438
+ * AsciiDoc template names can now contain embedded attribute
439
+ references.
440
+ * Added legalnotice tag to doc/article-docinfo.xml example.
441
+ * xhtml11 backend: Callouts and callout lists display callout icons
442
+ when the icons attribute is defined. See
443
+ [46]http://groups.google.com/group/asciidoc/browse_frm/thread/8eda3
444
+ ea812968854
445
+ * Document attribute names are case insensitive everywhere, this
446
+ makes using attribute entries more consistent e.g. previously
447
+ :VERS: had to be refered to
448
+ * Hungarian translation of footer-text (submitted by Miklos Vajna).
449
+ See
450
+ [47]http://groups.google.com/group/asciidoc/browse_frm/thread/7174c
451
+ b7598993c72#
452
+ * asciidocapi.py 0.1.2: Can now load AsciiDoc script named asciidoc.
453
+ See
454
+ [48]http://groups.google.com/group/asciidoc/browse_frm/thread/66e7b
455
+ 59d12cd2f91 Based on patch submitted by Phillip Lord.
456
+ * German translation of footer-text (submitted by Simon Ruderich).
457
+ See
458
+ [49]http://groups.google.com/group/asciidoc/browse_frm/thread/7174c
459
+ b7598993c72
460
+ * Pushed HTML footer text into language conf files with the
461
+ introduction of a [footer-text] configuration file template
462
+ section. See
463
+ [50]http://groups.google.com/group/asciidoc/browse_frm/thread/7174c
464
+ b7598993c72
465
+
466
+ Bug fixes
467
+ * FIXED: Sometimes multiple double quoted text elements in the same
468
+ paragraph were mistakenly seen as starting with an inline literal.
469
+ See
470
+ [51]http://groups.google.com/group/asciidoc/browse_frm/thread/219c8
471
+ 6ae25b79a21
472
+ * FIXED: localtime and doctime attributes calculated incorrect
473
+ daylight saving / non daylight saving timezones and consequently so
474
+ did HTML footers. Patch submitted by Slawomir Testowy. See
475
+ [52]http://groups.google.com/group/asciidoc/browse_frm/thread/af652
476
+ 507caf6cec9
477
+ * FIXED: Missing selector for List of examples title in DocBook CSS
478
+ file. Patch submitted by Laurent Laville. See
479
+ [53]http://groups.google.com/group/asciidoc/browse_frm/thread/3f969
480
+ 00f7fbf5620
481
+ * FIXED: Broken accents in lang-hu.conf. See:
482
+ [54]http://groups.google.com/group/asciidoc/browse_frm/thread/7174c
483
+ b7598993c72
484
+ * FIXED: DocBook XSL generated HTML callout lists are properly
485
+ aligned. Submitted by Lionel Orry. See
486
+ [55]http://groups.google.com/group/asciidoc/browse_frm/thread/2ff80
487
+ 2547b6a75ea
488
+ * FIXED: Filter execution now occurs prior to filter markup template
489
+ substitution to ensure image data URI encoding happens after image
490
+ generation (see
491
+ [56]http://groups.google.com/group/asciidoc/browse_thread/thread/14
492
+ e8fcb289a135b).
493
+ * FIXED: The section numbers no longer increment when the numbered
494
+ attribute is undefined (see
495
+ [57]http://groups.google.com/group/asciidoc/browse_thread/thread/fa
496
+ a36e9e5c7da019/d24cab3fe363e58d).
497
+ __________________________________________________________________
498
+
499
+ 7. Version 8.5.3 (2010-01-18)
500
+
501
+ Additions and changes
502
+ * a2x: Added a2x configuration file options ASCIIDOC_OPTS,
503
+ DBLATEX_OPTS, FOP_OPTS, XSLTPROC_OPTS (appended to same-named
504
+ command-line options). See
505
+ [58]http://groups.google.com/group/asciidoc/browse_frm/thread/ac4b9
506
+ bfa2116db28
507
+ * Dropped .hgignore from the repository. See
508
+ [59]http://groups.google.com/group/asciidoc/browse_frm/thread/c17ab
509
+ d175778f5ea
510
+ * Don’t pass verbose options to asciidoc table filter so that
511
+ asciidocapi messages are not discarded. See:
512
+ [60]http://groups.google.com/group/asciidoc/browse_frm/thread/c17ab
513
+ d175778f5ea
514
+ * Added ./tests/data/lang-pt-BR-test.txt file to the repository.
515
+ * xhtml11: Verse block and verse paragraph content enveloped in a pre
516
+ tag (instead of a div) so it renders better in text-only browsers.
517
+ See:
518
+ [61]http://groups.google.com/group/asciidoc/browse_frm/thread/1b6b6
519
+ 6adb24e710
520
+ * User Guide: Clarified Passthrough Blocks (suggested by Simon
521
+ Ruderich).
522
+ * FAQ: How can I include lines of dashes inside a listing block?
523
+ * FAQ errata and updates (submitted by Simon Ruderich).
524
+ * User Guide errata.
525
+ * Simplified asciidoc-toc processing instruction and included lists
526
+ of figures, tables, examples and equations in books (i.e. revert to
527
+ pre-8.5.0 behavior).
528
+ * Attempted to have dblatex recognise the asciidoc-toc processing
529
+ instruction but couldn’t get it to work.
530
+ * Added notitle attribute to allow the document title to be hidden.
531
+
532
+ Bug fixes
533
+ * FIXED: Regression: system attribute escaping did not work.
534
+ * FIXED: Website: broken image links in chunked User Guide.
535
+ __________________________________________________________________
536
+
537
+ 8. Version 8.5.2 (2009-12-07)
538
+
539
+ Additions and changes
540
+ * Updated example article and book documents with the recommended
541
+ explicit section name syntax (see the Special section titles vs.
542
+ explicit template names sidebar in the AsciiDoc User Guide).
543
+ * Added Italian language configuration file (contributed by Fabio
544
+ Inguaggiato).
545
+ * Added header table style. See:
546
+ [62]http://groups.google.com/group/asciidoc/browse_frm/thread/a23fe
547
+ a28394c8ca9
548
+ * Pass icons, data-uri, imagesdir, iconsdir attributes to asciidoc
549
+ table style filter so that images are rendered in table cells.
550
+ * Pass trace and verbose attributes to asciidoc table style filter so
551
+ diagnostic information is printed from table cell source.
552
+ * The eval system attribute can be nested inside other system
553
+ attributes.
554
+ * HTML outputs: Table and figure caption punctuation set to more
555
+ usual syntax.
556
+ * docbook backend: footnotes can now contain embedded images. See
557
+ [63]http://groups.google.com/group/asciidoc/browse_frm/thread/50b28
558
+ f6941de111a
559
+ * CSS tweaks so that tables processed by DocBook XSL Stylesheets have
560
+ the default asciidoc xhtml11 backend styling. See
561
+ [64]http://groups.google.com/group/asciidoc/browse_frm/thread/dfe52
562
+ 04d5b2c9685
563
+ * Block titles take precedence over section titles to avoid titled
564
+ delimited blocks being mistaken for two line section titles (see
565
+ [65]http://groups.google.com/group/asciidoc/browse_frm/thread/f0b6f
566
+ 9989f828c3).
567
+ * Section title trace displays level and title text.
568
+ * FAQ additions.
569
+ * Added {zwsp} (zero width space) attribute.
570
+ * Undefined paragraph styles are reported (previously threw a runtime
571
+ error).
572
+ * Eliminated empty preamble generation.
573
+ * Floating titles now processed in all contexts.
574
+ * Implemented auto-lettered appendix names and updated example
575
+ documents.
576
+ * Section numbering can be disabled in HTML outputs with a
577
+ :numbered!: AttributeEntry.
578
+ * xhtml11: Nicer default quote block styling.
579
+ * Exclude floating titles from xhtml11 table of contents. Patch
580
+ submitted by Mark Burton (see
581
+ [66]http://groups.google.com/group/asciidoc/browse_frm/thread/14aef
582
+ c1cb6bd85f5).
583
+ * Enhanced doc/article-docinfo.xml example docinfo file.
584
+ * Vim syntax highlighter improvements.
585
+
586
+ Bug fixes
587
+ * FIXED: Absolute imagesdir and iconsdir attribute path names do not
588
+ work with the xhtml11 data-uri encoding. See
589
+ [67]http://groups.google.com/group/asciidoc/browse_frm/thread/cb8b7
590
+ 694bbc82a6
591
+ * FIXED: Regression issue with inline data-uri images. See
592
+ [68]http://groups.google.com/group/asciidoc/browse_frm/thread/cb8b7
593
+ 694bbc82a6
594
+ * FIXED: An unexpected error occurred when processing a table
595
+ containing CSV data if the cols attribute was not explicitly
596
+ specified. See
597
+ [69]http://groups.google.com/group/asciidoc/browse_frm/thread/4b0f3
598
+ 64b477ec165
599
+ __________________________________________________________________
600
+
601
+ 9. Version 8.5.1 (2009-10-31)
602
+
603
+ Additions and changes
604
+ * If an AsciiDoc document file begins with a UTF-8 BOM (byte order
605
+ mark) then it is passed transparently through to the output file.
606
+ The BOM is stripped from included files. See
607
+ [70]http://groups.google.com/group/asciidoc/browse_frm/thread/e5e61
608
+ 823ff4203cd
609
+ * Added AsciiDoc role attribute to quoted text. Sets class attribute
610
+ in HTML outputs; role attribute in DocBook outputs. See:
611
+ [71]http://groups.google.com/group/asciidoc/browse_frm/thread/2aa3e
612
+ 5711d243045
613
+ * Conditional attribute syntax extended: they now accept multiple
614
+ ORed or ANDed attribute names.
615
+ * The xhtml11 backend dynamically processes footnotes using
616
+ JavaScript.
617
+ * Tidied up and namespaced xhtml11 JavaScript.
618
+ * Superceded javascripts/toc.js with javascripts/asciidoc-xhtml11.js.
619
+ * Added disable-javascript attribute (xhtml11 backend).
620
+ * Styled HTML footnotes.
621
+ * Added links to HTML footnote refs.
622
+ * Added title attribute to inline image macros to display popup
623
+ “tooltip” (HTML outputs only).
624
+ * Single-quoted attribute values are substituted in block macros
625
+ (just like the AttributeList element).
626
+ * For consistency changed underscores to dashes in attribute names.
627
+ Public attributes with underscores retained for compatibility.
628
+ * Added Brazilian Portuguese language configuration file (contributed
629
+ by Thiago Farina).
630
+ * Added leveloffset attribute to make it easier to combine documents.
631
+
632
+ Bug fixes
633
+ * FIXED: a2x: --dblatex-opts is now processed last so
634
+ asciidoc-dblatex.xsl params can be overridden. Patch submitted by
635
+ Mark Fernandes (see
636
+ [72]http://groups.google.com/group/asciidoc/browse_frm/thread/5215c
637
+ 99dcc865e7d).
638
+ * FIXED: An error occurred if a directory in current path with same
639
+ name as executable.
640
+
641
+ 9.1. Regression issues
642
+
643
+ There’s been quite a bit of tiding up to the xhtml11 JavaScript. The
644
+ most obvious change is that the toc.js script has been superceded by
645
+ asciidoc-xhtml11.js so if you’re linking you’ll need get a copy of the
646
+ new file from the distribution javascripts directory.
647
+
648
+ If you use customised xhtml11 configuration file [header] and [footer]
649
+ sections and you want them to use the new footnotes feature then you’ve
650
+ got a bit more work to do:
651
+ 1. The onload event expression changed.
652
+ 2. The new <div id="content">...</div> div envelopes document content.
653
+ 3. You need to add <div id="footnotes">...</div> div to the
654
+ [footnotes] section for footnotes to work.
655
+ 4. Drop the ifdef::toc[] macro that surround JavaScript inclusion.
656
+
657
+ Take a look at the [header] and [footer] changes in the xhtml11.conf
658
+ diff to see what’s going on:
659
+ [73]http://hg.sharesource.org/asciidoc/diff/55a5999bfd04/xhtml11.conf
660
+ __________________________________________________________________
661
+
662
+ 10. Version 8.5.0 (2009-10-04)
663
+
664
+ Additions and changes
665
+ * Implemented a float attribute for tables and block images (HTML
666
+ outputs only).
667
+ * Added unfloat::[] block macro to cancel floating.
668
+ * Added table align attribute to (HTML outputs only).
669
+ * The image align attribute now works with HTML backends.
670
+ * Renamed table cell align attribute to halign so it doesn’t clash
671
+ with the new table align attribute.
672
+ * Added breakable and unbreakable options to AsciiDoc example and
673
+ block image elements.
674
+ * [miscellaneous] section entries now update properly when set from a
675
+ document AttributeEntry.
676
+ * [miscellaneous] section pagewidth entry accepts fractional values.
677
+ * Fractional column widths are now calculated correctly when using
678
+ fractional pageunits (DocBook tables).
679
+ * Use DocBook XSL table width processing instructions.
680
+ * asciidoc KeyboardInterrupt exits with error code 1.
681
+ * Added set system attribute to allow attributes to be set from
682
+ configuration file templates.
683
+ * Allow constrained quotes to be bounded on the left by a colons and
684
+ semicolons, see
685
+ [74]http://groups.google.com/group/asciidoc/browse_frm/thread/b276a
686
+ 927fdc87995
687
+ * Titled listing and literal blocks (DocBook outputs) no longer
688
+ default to examples. See
689
+ [75]http://groups.google.com/group/asciidoc/browse_frm/thread/f4df7
690
+ c9eec01a9bd
691
+ * Updated language file table, figure and example captions to
692
+ accommodate new auto-numbering in html4 and xhtml11 backends.
693
+ * Titled source highlight filter listings generated by docbook
694
+ backend are now rendered as examples. See
695
+ [76]http://groups.google.com/group/asciidoc/browse_frm/thread/f4df7
696
+ c9eec01a9bd
697
+ * Implemented counter system attribute.
698
+ * Use counter system attributes to number titled tables and block
699
+ images in HTML backends.
700
+ * Added program name suffix to console messages.
701
+ * Added substitution to the AttributeEntry passthrough syntax, this
702
+ replaces the now unnecessary attributeentry-subs attribute.
703
+ * Allow passthrough inline macro syntax to be used in
704
+ AttributeEntrys.
705
+ * Reinstated 8.4.4 default lang attribute behavior. See
706
+ [77]http://groups.google.com/group/asciidoc/browse_frm/thread/d2992
707
+ 4043e21cb6a.
708
+ * Added max-width attribute to the xhtml11 backend to set maximum
709
+ display width. See
710
+ [78]http://groups.google.com/group/asciidoc/browse_frm/thread/74d9a
711
+ 542b79ccd50.
712
+ * Added a2x.py, a rewritten and much enhanced version of the old a2x
713
+ bash script.
714
+ * The new a2x can output EPUB formatted documents.
715
+ * Added --safe option and deprecated --unsafe option. Patch submitted
716
+ by Todd Zullinger. See
717
+ [79]http://groups.google.com/group/asciidoc/browse_frm/thread/ea3a8
718
+ ea399ae5d2a and
719
+ [80]http://groups.google.com/group/asciidoc/browse_frm/thread/69b31
720
+ 83fdab7c6a5
721
+ * Added CHECK and TEST todo highlight words to Vim syntax
722
+ highlighter.
723
+ * Line breaks, page breaks, and horizontal rulers are now processed
724
+ by dblatex, thanks to a patch submitted by Mark Fernandes
725
+ ([81]http://groups.google.com/group/asciidoc/browse_frm/thread/a254
726
+ cf949ea7c6c5).
727
+ * Allow footnote macros hard up against the preceding word so the
728
+ rendered footnote mark can be placed against the noted text without
729
+ an intervening space (patch submitted by Stas Bushuev,
730
+ [82]http://groups.google.com/group/asciidoc/browse_frm/thread/e1dcb
731
+ 7ee0efc17b5).
732
+ * Normalized path in safe_filename function (submitted by Todd
733
+ Zullinger,
734
+ [83]http://groups.google.com/group/asciidoc/browse_frm/thread/69b31
735
+ 83fdab7c6a5).
736
+ * The Asciidoc numbered and toc attributes cause DocBook outputs to
737
+ include asciidoc-numbered and asciidoc-toc processing instructions,
738
+ these are used by DocBook XSL to include section numbering and
739
+ table of contents (like Asciidoc HTML backends). For backward
740
+ compatibility both numbered and toc attributes are defined by
741
+ default when the docbook backend is used. See
742
+ [84]http://groups.google.com/group/asciidoc/browse_frm/thread/1bada
743
+ d21ff9447ac.
744
+ * data-uri attribute is now evaluated dynamically and can be set in
745
+ document body (previously could only be set from command-line).
746
+ * Added sys3 and eval3 system attributes to passthrough generated
747
+ output, this fixes the data-uri inline image problem:
748
+ [85]http://groups.google.com/group/asciidoc/browse_frm/thread/a42db
749
+ 6bc54c2c537.
750
+ * Missing language file generates a warning instead of an error.
751
+ * Updated Spanish language file (updates contributed by Gustavo
752
+ Andrés Gómez Farhat).
753
+
754
+ Bug fixes
755
+ * FIXED: Options in an AttributeList option attribute are merged with
756
+ (rather than replace) configuration file options.
757
+ * FIXED: Comment blocks and comment block macros no longer consume
758
+ preceding block titles and attribute lists.
759
+ * FIXED: examples/website/layout1.conf and
760
+ examples/website/layout2.conf TOC problem. Submitted by Mark
761
+ (burtoogle). See
762
+ [86]http://groups.google.com/group/asciidoc/browse_frm/thread/b9c63
763
+ be67dd1d11c
764
+ * FIXED: Only the first occurrence of passthrough macro was
765
+ substituted. Patch submitted by Peter Johnson. See
766
+ [87]http://groups.google.com/group/asciidoc/browse_frm/thread/1269d
767
+ c2feb1a482c
768
+ * FIXED: asciidoc now runs on Jython 2.5.0.
769
+ * FIXED: Wordpress margins and pads in a number of block elements
770
+ ([88]http://groups.google.com/group/asciidoc/browse_frm/thread/36ff
771
+ 073c79cbc20a).
772
+
773
+ 10.1. Regression issues
774
+
775
+ * Tables generated by dblatex occupy 100% of the available space
776
+ regardless of the width attribute setting. To restore width
777
+ behavior change the pageunits miscellaneous parameter to pt. You
778
+ can do this from the command-line with the -a pageunits=pt option.
779
+ See [89]DocBook table widths.
780
+ __________________________________________________________________
781
+
782
+ 11. Version 8.4.5 (2009-05-24)
783
+
784
+ Additions and changes
785
+ * Added manpage Name and Synopsis section title customization to
786
+ languages configuration files.
787
+ * Synopsis manpage section no longer mandatory.
788
+ * Section markup templates can be specified by setting the title’s
789
+ first positional attribute or template attribute.
790
+ * The article and book document header can now include a revision
791
+ remark.
792
+ * A role attribute can now be applied to block elements. This adds
793
+ the role attribute to DocBook elements. Patch submitted by [90]Noah
794
+ Slater).
795
+ * Renamed revision and date attributes to more sensible and
796
+ consistent revnumber and revdate (old names deprecated but still
797
+ recognized).
798
+ * Moved backend specific attributes to Appendix H in User Guide.
799
+ * Renamed and generalized the docbook backend revision history
800
+ inclusion mechanism to docinfo to reflect the use of all article or
801
+ book information elements. The old revision history names still
802
+ work but have been deprecated.
803
+ * Refactored docbook.conf headers.
804
+ * Moved line break replacement from [replacements] to [replacements2]
805
+ so the replacement occurs after the mailto macro. This fixes bug
806
+ [91]http://groups.google.com/group/asciidoc/browse_thread/thread/4b
807
+ dcdfb0af773e2
808
+ * The typewriter to punctuation apostrophe replacement can be escaped
809
+ with a backslash.
810
+ * Graphviz filter outputs images to imagesdir if it is defined.
811
+ * Made the block image macro generic so that it can be used for
812
+ filter outputs. As a result Music and Graphviz filters:
813
+ + Have been greatly simplified.
814
+ + Honor the data-uri attribute.
815
+ + html4 outputs no longer generate W3C validation warning.
816
+ * The iconsdir attribute no longer requires a trailing directory
817
+ separator character.
818
+ * Removed borders around linked html4 images.
819
+ * Added html4 specific HTML output for music filter.
820
+ * a2x: Added --unsafe option (shortcut for --asciidoc-opts=--unsafe).
821
+ * a2x: The FOP executable can now be named fop (this is the default
822
+ name in some distributions).
823
+ * Attributes are now substituted in the system macro attribute list.
824
+ * If the output is set to stdout (i.e. no output directory is
825
+ defined) then Music and Graphviz filters will output included
826
+ images to the source file directory.
827
+ * Added name directive to testasciidoc.
828
+ * Added lots of testasciidoc new tests.
829
+ * Moved language specific configuration parameters into lang-en.conf
830
+ file.
831
+ * lang attribute entry can be specified in the AsciiDoc source file
832
+ (preceding the header).
833
+ * Removed cruft from A-A-P scripts and documented them.
834
+ * Added German language config file (lang-de.conf) contributed by
835
+ Michael Wild.
836
+ * Added French language config file (lang-fr.conf) contributed by
837
+ Yves-Alexis Perez.
838
+ * Added Russian language config file (lang-ru.conf) contributed by
839
+ Artem Zolochevskiy.
840
+ * Added Hungarian language config file (lang-hu.conf) contributed by
841
+ Miklos Vajna.
842
+
843
+ Bug fixes
844
+ * FIXED: Multiple manpage names are now handled correctly when
845
+ generating DocBook output, each name now generates a separate
846
+ DocBook <refname> element. See
847
+ [92]http://groups.google.com/group/asciidoc/browse_thread/thread/c9
848
+ 3bb4db025225d8
849
+ * FIXED: A problem that caused AttributeEntries preceding the header
850
+ to be overwritten when the language conf file loaded.
851
+ * FIXED: Possible inline macro name ambiguity e.g. link matches
852
+ olink.
853
+ * FIXED: The documented macro definition deletion behavior had been
854
+ broken for a long time.
855
+ * FIXED: Email addresses not recognized when followed by a period
856
+ character.
857
+ * FIXED: Hyphens in mailto macros can delimit nested addresses e.g.
858
+ bloggs@mail was processed inside
859
+ mailto:joe-bloggs@mail-server.com[Mail].
860
+ * FIXED: User name in FTP URI generated incorrect FTP link. See
861
+ [93]http://groups.google.com/group/asciidoc/browse_thread/thread/1d
862
+ 796a9c9ddb2855
863
+ * FIXED: Source highlighter now works with Wordpress backend (see
864
+ [94]http://groups.google.com/group/asciidoc/browse_thread/thread/6d
865
+ 8c716748b109e3).
866
+
867
+ 11.1. Regression issues
868
+
869
+ 1. A colon following the date in the AsciiDoc header is treated as a
870
+ revision remark delimiter — this could be an issue if you have used
871
+ a colon in the header date.
872
+ __________________________________________________________________
873
+
874
+ 12. Version 8.4.4 (2009-04-26)
875
+
876
+ Additions and changes
877
+ * Added table column and row spanning.
878
+ * Table styles can now be applied per cell.
879
+ * Vertical cell alignment can be applied to columns and individual
880
+ cells.
881
+ * Added table align attribute to set horizontal alignment for entire
882
+ table.
883
+ * Included Geoff Eddy’s update of the experimental LaTeX backend.
884
+ * A new attribute named trace controls the output of diagnostic
885
+ information. If the trace attribute is defined then
886
+ element-by-element diagnostic messages detailing output markup
887
+ generation are printed to stderr.
888
+ * Added literal paragraph style (allows literal style to be applied
889
+ to normal paragraphs).
890
+ * Deleted unused replacements2 from xhtml11.conf.
891
+ * Added replacements2 to default substitutions.
892
+ * testasciidoc.py: messages to stdout, only diffs to stderr.
893
+ * Added transparency to smallnew.png image.
894
+
895
+ Bug fixes
896
+ * All combinations of leading comments and attribute entries at the
897
+ start of a document are now skipped correctly.
898
+ * FIXED: ./configure doesn’t support --docdir as expected (patch
899
+ submitted by Artem Zolochevskiy)
900
+ * FIXED: Constrained quotes were incorrectly matched across line
901
+ boundaries e.g. the string +\nabc+ incorrectly matched a monospace
902
+ quote.
903
+ __________________________________________________________________
904
+
905
+ 13. Version 8.4.3 (2009-04-13)
906
+
907
+ Additions and changes
908
+ * DocBook outputs default to DocBook version 4.5 doctype (previously
909
+ 4.2).
910
+ * Configuration file [specialsections] definitions can be undefined
911
+ by setting their configuration entry values blank.
912
+ * The Makefile install target depends on the all target to ensure
913
+ pre-install patches are applied.
914
+ * testasciidoc.py now emits user friendly messages if:
915
+ 1. the configuration file is missing.
916
+ 2. an illegal backend is specified.
917
+ 3. an illegal test number is specified.
918
+
919
+ Bug fixes
920
+ * Fixed [95]missing template section error.
921
+ * The testasciidoc.py --force option no longer deletes test data
922
+ files that were not specified.
923
+ * Dropped second quotes substitution in table cells — it had
924
+ effectively disabled quote escaping in table cells.
925
+ __________________________________________________________________
926
+
927
+ 14. Version 8.4.2 (2009-03-19)
928
+
929
+ Additions and changes
930
+ * Added [96]testasciidoc, a tool to verify AsciiDoc conformance.
931
+ * A warning is issued if nested inline passthroughs are encountered.
932
+ * asciidocapi: setting an attribute value to None will undefine
933
+ (delete) the attribute (this in addition to the name! attribute
934
+ name format that the asciidoc(1) command uses).
935
+ __________________________________________________________________
936
+
937
+ 15. Version 8.4.1 (2009-03-10)
938
+
939
+ Additions and changes
940
+ * AsciiDoc now has a [97]Python API. The following minimal example
941
+ compiles mydoc.txt to mydoc.html:
942
+
943
+ from asciidocapi import AsciiDocAPI asciidoc = AsciiDocAPI()
944
+ asciidoc.execute('mydoc.txt')
945
+
946
+ * Backtick quoting for monospaced text is now implemented as an
947
+ inline literal passthrough. This makes more sense since monospace
948
+ text is usually intended to be rendered literally. See
949
+ [98]Regression issues below for the impact this may have on
950
+ existing documents. Here are some examples that would previously
951
+ have had to be escaped:
952
+ The `++i` and `++j` auto-increments.
953
+ Paths `~/.vim` and `~/docs`.
954
+ The `__init__` method.
955
+ The `{id}` attribute.
956
+ * Added --doctest option to asciidoc(1) command.
957
+ * Added an optional second argument to BlockId element, this sets the
958
+ {reftext} attribute which in turn is used to set the xreflabel
959
+ attribute in DocBook elements.
960
+ * Added lists to --help syntax summary.
961
+ * {infile} and {indir} attributes reflect the current input file
962
+ (previously always referred to the root document).
963
+ * {docfile} (new) and {docdir} (previously deprecated) attributes
964
+ refer to the root document specified on the asciidoc(1)
965
+ command-line.
966
+ * Vim syntax highlighter improvements.
967
+ * Syntax summary command (asciidoc -h syntax) additions.
968
+ * Admonition icons now have transparent backgrounds.
969
+ * Changed yellow W3C badges to blue ones in page footers.
970
+
971
+ Bug fixes
972
+ * Dropped asciidoc(1) broken undocumented --profile option.
973
+ * Em dash replacement now recognized at start of block.
974
+
975
+ 15.1. Regression issues
976
+
977
+ Replacing backtick quoting with the inline literal passthrough raises
978
+ two regression scenarios for existing documents:
979
+ 1. You have escaped the expansion of enclosed inline elements, for
980
+ example: \{id}. You would need to delete the backslashes: {id} (if
981
+ you don’t the backslashes will be printed). Mostly it’s just a case
982
+ of interactively finding and replacing of all occurrences of `\.
983
+ 2. There are enclosed inline elements, for example: some *bold*
984
+ monospaced. You would need to switch to plus character monospace
985
+ quoting: +some *bold* monospaced+ (if you don’t the enclosed
986
+ elements won’t be expanded).
987
+
988
+ If your existing documents include these cases and you don’t want to
989
+ upgrade then use the -a no-inline-literal command-line option,
990
+ alternatively put this in ~/.asciidoc/asciidoc.conf:
991
+ [attributes]
992
+ no-inline-literal=
993
+ __________________________________________________________________
994
+
995
+ 16. Version 8.3.5 (2009-02-02)
996
+
997
+ Additions and changes
998
+ * Cached compiled regular expression delimiters (speed up User Manual
999
+ compilation by 250%).
1000
+ * Created distinct list definitions for each numbered list style to
1001
+ allow nesting of all styles.
1002
+ * Roman numbers in numbered lists are followed by a closing
1003
+ parenthesis instead of a period to eliminate i, v, x item ambiguity
1004
+ with respect to alpha numbered list items.
1005
+ * Added **, ***, ****, ***** bulleted lists.
1006
+ * Added ..., ...., ..... implicit numbered lists.
1007
+ * Added :::, :::: labeled lists.
1008
+ * Updated User Guide for new list syntaxes.
1009
+ * Optimized paragraph and list termination detection with separate
1010
+ precompiled regular expressions for performance and to prevent
1011
+ reaching Python 100 named group limit.
1012
+ * Updated Vim syntax highlighter for new list syntaxes.
1013
+ * Allow template::[] macros in conf file entries sections (not just
1014
+ in template sections).
1015
+ * Dropped unused [listdef-numbered2] conf file sections.
1016
+ * Renamed ListBlock to more appropriate OpenBlock.
1017
+ * Implemented single-line versions of ifdef::[] and ifndef::[]
1018
+ macros.
1019
+ * html4 backend styling:
1020
+ + Underlined admonition captions.
1021
+ + Added side border to Example Blocks.
1022
+ * xhtml11 backend styling:
1023
+ + Dropped right hand margin from all but quote and verse blocks.
1024
+ + html4 backend: corrected over-sized width of caption in
1025
+ admonition block.
1026
+
1027
+ Bug fixes
1028
+ * Fixed broken numbered list nesting.
1029
+
1030
+ 16.1. Compatibility issues
1031
+
1032
+ The roman numbered list parenthesis syntax is incompatible with the
1033
+ potentially ambiguous roman period syntax introduced in 8.3.2.
1034
+ __________________________________________________________________
1035
+
1036
+ 17. Version 8.3.4 (2009-01-20)
1037
+
1038
+ Additions and changes
1039
+ * Implemented a title float style. A floating title (or bridgehead)
1040
+ is rendered just like a normal section but is not formally
1041
+ associated with a text body and is not part of the regular section
1042
+ hierarchy so the normal ordering rules do not apply.
1043
+ * Implemented inline comment macro so comment lines can now appear
1044
+ inside block elements.
1045
+ * Comment lines are sent to the output if the showcomments attribute
1046
+ is defined (comment blocks are never sent to the output).
1047
+ * Single quoting attribute values in AttributeList elements causes
1048
+ them to be substituted like normal inline text (without single
1049
+ quoting only attribute substitution is performed).
1050
+ * Rewrote list item processing (was very crufty). List continuation
1051
+ and list blocks now work as expected. Updated and clarified list
1052
+ documentation in User Guide.
1053
+ * The revision attribute now recognizes the RCS $Id$ marker format.
1054
+ * An RCS $Id$ marker formatted revision line in the header does not
1055
+ need to be preceded by an author line.
1056
+ * If an RCS $Id$ formatted revision is specified and the author name
1057
+ has not already been set then the author name in the $Id$ marker
1058
+ will be used.
1059
+ * Updated Gouichi Iisaka’s Graphviz filter to version 1.1.3.
1060
+ * Added autowidth table attribute option for (X)HTML outputs.
1061
+ * DocBook backend now puts orgname optional attribute in DocBook
1062
+ header.
1063
+ * Deprecated undocumented companyname attribute in favor of DocBook’s
1064
+ corpname.
1065
+ * Removed explicit closing backslash from HTML4 self-closing tags to
1066
+ comply with WC3 recommendation.
1067
+
1068
+ Bug fixes
1069
+ * Fixed 8.3.3 regression whereby adjacent lists with the same syntax
1070
+ but different list styles were incorrectly treated as a single
1071
+ list.
1072
+ __________________________________________________________________
1073
+
1074
+ 18. Version 8.3.3 (2009-01-02)
1075
+
1076
+ This release supersedes 8.3.2.
9
1077
 
10
1078
  Bug fixes
11
1079
  * The broken and confusing numeration and numeration2 numbered list
12
1080
  attributes have been dropped, use the style attribute instead.
13
1081
  __________________________________________________________________
14
1082
 
15
- 2. Version 8.3.2 (2009-01-01)
1083
+ 19. Version 8.3.2 (2009-01-01)
16
1084
 
17
1085
  Additions and changes
18
- * Added Gouichi Iisaka's Graphviz filter to distribution.
1086
+ * Added Gouichi Iisakas Graphviz filter to distribution.
19
1087
  * The SidebarBlock element can now be rendered with an abstract
20
1088
  style.
21
1089
  * Reorganized filters into a separate subdirectory for each filter.
@@ -36,8 +1104,8 @@
36
1104
  * You can now backslash escape system block macros.
37
1105
  * Added Pychart FAQ.
38
1106
  * Drop paragraph text and list text, index and label match groups
39
- from attributes -- they are included in the element's text and we
40
- don't want them processed a second time as attributes.
1107
+ from attributes they are included in the elements text and we
1108
+ dont want them processed a second time as attributes.
41
1109
  * Changed comment line block macro to a passthrough block macro to
42
1110
  ensure no substitutions.
43
1111
  * A subslist no longer has to be appended to a PassthroughBlock macro
@@ -52,11 +1120,11 @@
52
1120
  where not escaped in DocBook outputs.
53
1121
  __________________________________________________________________
54
1122
 
55
- 3. Version 8.3.1 (2008-12-14)
1123
+ 20. Version 8.3.1 (2008-12-14)
56
1124
 
57
1125
  Additions and changes
58
- * Replaced the install.sh script with Ben Walton's updated autoconf
59
- scripts -- see [1]INSTALL for details.
1126
+ * Replaced the install.sh script with Ben Waltons updated autoconf
1127
+ scripts see [99]INSTALL for details.
60
1128
  * Added a generalized AttributeEntry syntax to allow arbitrary
61
1129
  configuration file entries to be set from within an AsciiDoc
62
1130
  document (suggested by Henrik Maier).
@@ -72,18 +1140,18 @@
72
1140
  resulted in backward incompatibility, double-quotes in unquoted
73
1141
  attribute values has been reinstated.
74
1142
  * Regression: Text like &...; was sometimes mistaken for an entity
75
- reference -- tightened up entity reference matching.
1143
+ reference tightened up entity reference matching.
76
1144
  __________________________________________________________________
77
1145
 
78
- 4. Version 8.3.0 (2008-11-29)
1146
+ 21. Version 8.3.0 (2008-11-29)
79
1147
 
80
1148
  Additions and changes
81
- * [2]AsciiDoc new tables is a complete redesign of the tables syntax
82
- and generation. The new syntax and features are a huge improvement
83
- over the old tables. The old tables syntax has been deprecated but
84
- is currently still processed.
85
- * [3]Lists can now be styled like other block elements. This allows a
86
- single list syntax for glossary, qanda (Question and Answer) and
1149
+ * [100]AsciiDoc new tables is a complete redesign of the tables
1150
+ syntax and generation. The new syntax and features are a huge
1151
+ improvement over the old tables. The old tables syntax has been
1152
+ deprecated but is currently still processed.
1153
+ * [101]Lists can now be styled like other block elements. This allows
1154
+ a single list syntax for glossary, qanda (Question and Answer) and
87
1155
  bibliography lists instead of having to remember a different syntax
88
1156
  for each type.
89
1157
  * Inline passthroughs macros have been improved and block passthrough
@@ -91,11 +1159,11 @@
91
1159
  when the macro is called.
92
1160
  * The passthrough block has a fully transparent passthrough delimited
93
1161
  block block style called pass.
94
- * The asciimath and latexmath [4]passthrough macros along with
95
- asciimath and latexmath [5]passthrough blocks provide a (backend
1162
+ * The asciimath and latexmath [102]passthrough macros along with
1163
+ asciimath and latexmath [103]passthrough blocks provide a (backend
96
1164
  dependent) mechanism for rendering mathematical formulas. There are
97
- [6]LaTeX Math, [7]AsciiMathML and [8]LaTeXMathML examples on the
98
- AsciiDoc website.
1165
+ [104]LaTeX Math, [105]AsciiMathML and [106]LaTeXMathML examples on
1166
+ the AsciiDoc website.
99
1167
  * Reimplemented and cleaned up filter processing based on a patch
100
1168
  submitted by Kelly Anderson. Uses the newer subprocess module
101
1169
  instead of the deprecated popen2 module. Now works in Win32 command
@@ -114,8 +1182,8 @@
114
1182
  patch).
115
1183
  * Title elements now process the options attribute like other block
116
1184
  elements.
117
- * Added `single quoted' element.
118
- * Spaces on both sides of a -- em-dash are translated to thin space
1185
+ * Added single quoted element.
1186
+ * Spaces on both sides of a em-dash are translated to thin space
119
1187
  characters.
120
1188
  * Improved detection and reporting of malformed attribute lists.
121
1189
  * The list compact style is now a list option.
@@ -173,7 +1241,7 @@
173
1241
  semantics.
174
1242
  * Vim syntax highlighter: escaped quoted text, attribute references
175
1243
  and inline macros are not highlighted.
176
- * Vim syntax highlighter: TODO's highlighted in CommentBlocks (thanks
1244
+ * Vim syntax highlighter: TODOs highlighted in CommentBlocks (thanks
177
1245
  to Scott Wall); non-greedy $$...$$.
178
1246
  * Vim syntax highlighter: Comment lines mistaken for vertical list
179
1247
  labels (thanks to Scott Wall).
@@ -196,7 +1264,7 @@
196
1264
  * Generic tag inline macro (creeping featurism, use pass macros
197
1265
  instead).
198
1266
 
199
- 4.1. Compatibility issues
1267
+ 21.1. Compatibility issues
200
1268
 
201
1269
  Version 8.3.0 has a number of backward incompatibilities with respect
202
1270
  to the previous 8.2.7 release:
@@ -204,8 +1272,8 @@
204
1272
  issued.
205
1273
  * Entity references have to be escaped with a backslash.
206
1274
  * You have to explicitly precede horizontal style labeled lists with
207
- the [horizontal] style attribute -- by default all labeled lists
208
- are rendered vertically.
1275
+ the [horizontal] style attribute by default all labeled lists are
1276
+ rendered vertically.
209
1277
  * The list compact style has been dropped and is now a list option
210
1278
  (use options="compact" in attribute lists).
211
1279
  * AsciiDoc version 6 sytnax no longer supported.
@@ -216,7 +1284,7 @@
216
1284
  quoting is escaped with two backslashes.
217
1285
  __________________________________________________________________
218
1286
 
219
- 5. Version 8.2.7 (2008-07-04)
1287
+ 22. Version 8.2.7 (2008-07-04)
220
1288
 
221
1289
  Additions and changes
222
1290
  * Added dvi, ps and tex output format options to a2x(1).
@@ -226,30 +1294,30 @@
226
1294
  ./dblatex directory) that are used by a2x(1).
227
1295
  * dblatex(1) is now used to generate the distributed PDF version of
228
1296
  the AsciiDoc User Guide.
229
- * If you don't need a customized the link caption you can enter the
1297
+ * If you dont need a customized the link caption you can enter the
230
1298
  http, https, ftp, file URLs and email addresses without any special
231
- macro syntax -- you get the links by just cutting and pasting URLs
1299
+ macro syntax you get the links by just cutting and pasting URLs
232
1300
  and emails addresses. This also makes it easier to open links
233
1301
  directly form AsciiDoc source ( most editors allow you to open URLs
234
1302
  directly). The Vim syntax highlighter has been updated to reflect
235
1303
  these changes.
236
- * Highlighted source code paragraphs have been implemented -- it's a
237
- much more convenient way to enter short code examples (see [9]the
1304
+ * Highlighted source code paragraphs have been implemented its a
1305
+ much more convenient way to enter short code examples (see [107]the
238
1306
  online docs).
239
- * The source highlighter and music filter syntax has changed -- they
1307
+ * The source highlighter and music filter syntax has changed they
240
1308
  now used the ListingBlock syntax customized with source and music
241
1309
  style attribute values. This follows the Paragraph styling
242
1310
  convention introduced by the source paragraph (previous item) and
243
1311
  is easier to read. The old syntax still works but has been
244
1312
  deprecated.
245
- * QuoteBlocks now have a verse style -- you no longer have to nest a
1313
+ * QuoteBlocks now have a verse style you no longer have to nest a
246
1314
  verse LiteralBlock inside a QuoteBlock for verses. The verse style
247
1315
  on the LiteralBlock has been deprecated (still works though) and
248
1316
  the style attribute is positional attribute 1, pushing attribution
249
- and citetitle attributes to the right (you'll need to insert a
1317
+ and citetitle attributes to the right (youll need to insert a
250
1318
  quote attribute into your existing QuoteBlocks).
251
1319
  * It is no up to the DocBook processor to highlight source code
252
- syntax in <programlisting> elements rather than GNU Highlighter --
1320
+ syntax in <programlisting> elements rather than GNU Highlighter
253
1321
  this is the correct way to handle it, plus dblatex(1) makes a much
254
1322
  better job.
255
1323
  * scaledwidth and align attributes have been added to the image
@@ -260,8 +1328,8 @@
260
1328
  * Added a2x(1) --fop-opts=FOP_OPTS option (patch submitted by Miklos
261
1329
  Vajna).
262
1330
  * Added a2x(1) --dblatex-opts=DBLATEX_OPTS option.
263
- * Added Mikhail Yakshin's FOP 0.95 patch which fixes a long-standing
264
- fo.xsl problem and allows PDF's to be generated with FOP 0.95
1331
+ * Added Mikhail Yakshins FOP 0.95 patch which fixes a long-standing
1332
+ fo.xsl problem and allows PDFs to be generated with FOP 0.95
265
1333
  (previously had to use FOP 0.20.5).
266
1334
  * The User Guide has been updated and outdated FOP configuration and
267
1335
  installation sections removed.
@@ -272,32 +1340,31 @@
272
1340
  * Configuration file *-style attributes are now dumped correctly.
273
1341
  * Fixed FAILED: malformed section entry LaTeX backend error.
274
1342
 
275
- See the also the [10]AsciiDoc repository changelog.
1343
+ See the also the [108]AsciiDoc repository changelog.
276
1344
  __________________________________________________________________
277
1345
 
278
- 6. Version 8.2.6 (2008-04-29)
1346
+ 23. Version 8.2.6 (2008-04-29)
279
1347
 
280
1348
  Additions and changes
281
1349
  * Enhancements to the Vim AsciiDoc syntax highlighter, for example,
282
1350
  quoted text is now highlighted in titles and macro captions.
283
1351
  * If you define the data-uri intrinsic attribute images referenced by
284
- image macros will be embedded in XHTML using the [11]data: URI
1352
+ image macros will be embedded in XHTML using the [109]data: URI
285
1353
  scheme. NOTE: Microsoft browser support for the data: URI scheme is
286
1354
  currently limited to MSIE 8 beta 1.
287
1355
  * Added toc-title attribute to allow custom table of contents titles.
288
- * Added references to Alex Efros's AsciiDoc Cheatsheet to AsciiDoc
1356
+ * Added references to Alex Efross AsciiDoc Cheatsheet to AsciiDoc
289
1357
  website.
290
1358
  * asciidoc(1) and a2x(1) man pages formatted to conform to
291
1359
  man-pages(7) recommendations.
292
1360
  * Old code-filter syntax (pre-8.1.0) is no longer recognized so that
293
1361
  malformed two-line level 2 titles are no longer confused with
294
1362
  code-filter block delimiters.
295
- * Added -> <- => <= arrow replacements from the Arrows block of
296
- Unicode.
297
- * Added DocBook refentry lang attribute -- patch contributed by
1363
+ * Added arrow replacements from the Arrows block of Unicode.
1364
+ * Added DocBook refentry lang attribute — patch contributed by
298
1365
  VMiklos.
299
- * AttributeEntry names can now be numeric ("named macro targets").
300
- * Hide Table of Contents title if Table of Contents empty -- patch
1366
+ * AttributeEntry names can now be numeric (named macro targets).
1367
+ * Hide Table of Contents title if Table of Contents empty patch
301
1368
  contributed by Alex Efros.
302
1369
  * Various XHTML CSS tweaks.
303
1370
  * Code cleanup:
@@ -315,22 +1382,22 @@
315
1382
  * A missing closing block delimiter now reports the opening delimiter
316
1383
  line number instead of the end of file line number.
317
1384
  * Fixed an error generated by the asciidoc -e option when there are
318
- no block definitions -- patch contributed by Alejandro Mery.
1385
+ no block definitions patch contributed by Alejandro Mery.
319
1386
  * Handle both \r\n (as well as \n) line separators that may be
320
1387
  returned by {sys} attribute evaluation.
321
1388
  * Numbered attribute names no longer interfere with positional
322
1389
  attribute list values.
323
1390
  __________________________________________________________________
324
1391
 
325
- 7. Version 8.2.5 (2007-11-18)
1392
+ 24. Version 8.2.5 (2007-11-18)
326
1393
 
327
1394
  Bug fixes
328
1395
  * Fixed exception thrown by illegal command-line arguments.
329
- * Rolled back the with warning bug fix introduced in 8.2.4 -- it was
1396
+ * Rolled back the with warning bug fix introduced in 8.2.4 it was
330
1397
  incompatible with Python <2.5.
331
1398
  __________________________________________________________________
332
1399
 
333
- 8. Version 8.2.4 (2007-11-10)
1400
+ 25. Version 8.2.4 (2007-11-10)
334
1401
 
335
1402
  Additions and changes
336
1403
  * You can now use the lang attribute to set the DocBook language
@@ -352,15 +1419,15 @@
352
1419
  2.6 has been suppressed.
353
1420
  __________________________________________________________________
354
1421
 
355
- 9. Version 8.2.3 (2007-09-12)
1422
+ 26. Version 8.2.3 (2007-09-12)
356
1423
 
357
1424
  Additions and changes
358
- * Added VMiklos's permalink patch for auto-generated section IDs
1425
+ * Added VMikloss permalink patch for auto-generated section IDs
359
1426
  (enabled by default by the sectids attribute).
360
- * Added [12]FAQ to website.
1427
+ * Added [110]FAQ to website.
361
1428
  * Changed format of {localdate} attribute to ISO 8601 (%Y-%m-%d).
362
1429
  * Added abc2ly --beams=None option to make music2png.py conform to
363
- ABC's notion of beams.
1430
+ ABCs notion of beams.
364
1431
  * XHTML level 2 section headings are now styled with an underlining
365
1432
  border.
366
1433
  * XHTML links to AsciiDoc title elements are now implemented with
@@ -386,11 +1453,11 @@
386
1453
  attribute substitution problems).
387
1454
  __________________________________________________________________
388
1455
 
389
- 10. Version 8.2.2 (2007-07-22)
1456
+ 27. Version 8.2.2 (2007-07-22)
390
1457
 
391
1458
  Additions and changes
392
- * [13]LaTeXMathML capability has been added for users who are more
393
- familiar with or prefer LaTeX math formulas to the [14]ASCIIMathML
1459
+ * [111]LaTeXMathML capability has been added for users who are more
1460
+ familiar with or prefer LaTeX math formulas to the [112]ASCIIMathML
394
1461
  notation (thanks to Arthur Sakellariou for the patch).
395
1462
  * The source highlight and code filters now process embedded
396
1463
  callouts.
@@ -402,47 +1469,48 @@
402
1469
 
403
1470
  Bug fixes
404
1471
  * Fixed an assertion error that occurred when a configuration file
405
- containing an \include::[] macro was loaded using the --conf-file
1472
+ containing an include::[] macro was loaded using the --conf-file
406
1473
  option and the configuration file name did not include an explicit
407
- directory path -- patch submitted by Dmitry Potapov.
1474
+ directory path patch submitted by Dmitry Potapov.
408
1475
  * Asciidoc titles are only converted to lower case if all characters
409
- are upper case otherwise case is left unchanged -- patch submitted
1476
+ are upper case otherwise case is left unchanged patch submitted
410
1477
  by Dmitry Potapov.
411
1478
  * Added a missing check that input is not stdin before loading
412
- configuration files from the document directory -- patch submitted
1479
+ configuration files from the document directory patch submitted
413
1480
  by Dmitry Potapov.
414
1481
  * Attribute list items must evaluate to strings, numbers or None
415
1482
  (previously it was possible to evaluate to other object types which
416
1483
  resulted in surprising attribute values).
417
1484
  * If an AsciiDoc document has no title an empty XHTML 1.1 title
418
- element is created -- previously the title element was dropped
419
- which resulted in invalid XHTML 1.1.
1485
+ element is created previously the title element was dropped which
1486
+ resulted in invalid XHTML 1.1.
420
1487
  * The Vim syntax file no longer highlights escaped callouts.
421
1488
  * The Vim syntax highlighter now correctly highlights Double-dollar
422
1489
  passthroughs when they enclose dollar delimited ASCIIMathML and
423
1490
  LaTeXMathML formulas.
424
1491
  __________________________________________________________________
425
1492
 
426
- 11. Version 8.2.1 (2007-04-06)
1493
+ 28. Version 8.2.1 (2007-04-06)
427
1494
 
428
1495
  Additions and changes
429
1496
  * A number of improvements have been made to the Vim syntax
430
1497
  highlighter, for example the word C++ is no longer mistaken for the
431
1498
  start of an unconstrained monospace quote.
432
- * Labeled list definitions have been tightened -- a list label can no
1499
+ * Labeled list definitions have been tightened a list label can no
433
1500
  longer containing trailing spaces. The following example is no
434
1501
  longer recognized as a valid list label:
435
- Lorum ipsum ::
436
- This change implements the originally intended behavior (as per the
437
- AsciiDoc documentation and examples) so there should be very few
438
- compatibility issues.
1502
+
1503
+ Lorum ipsum
1504
+ This change implements the originally intended behavior
1505
+ (as per the AsciiDoc documentation and examples) so there
1506
+ should be very few compatibility issues.
439
1507
  __________________________________________________________________
440
1508
 
441
- 12. Version 8.2.0 (2007-04-04)
1509
+ 29. Version 8.2.0 (2007-04-04)
442
1510
 
443
1511
  Additions and changes
444
1512
  * A Vim syntax file is now included in the AsciiDoc distribution
445
- (inspired by Felix Obenhuber's asciidoc.vim script). You can find
1513
+ (inspired by Felix Obenhubers asciidoc.vim script). You can find
446
1514
  it (along with a Vim filetype detection script in the distribution
447
1515
  ./vim/ directory (the scripts are installed automatically by the
448
1516
  AsciiDoc installer ./install.sh). See Appendix J of the AsciiDoc
@@ -454,7 +1522,7 @@
454
1522
  * Added a listindex attribute which is the current list item index
455
1523
  (1..). If this attribute appears outside a list its value is the
456
1524
  number of items in the most recently closed list.
457
- * The single line titles syntax now accepts trailing suffixes -- this
1525
+ * The single line titles syntax now accepts trailing suffixes this
458
1526
  syntax matches the title line syntax of a number of popular Wiki
459
1527
  markups.
460
1528
  * If a QuoteBlock has no attribution or citetitle then the DocBook
@@ -472,24 +1540,25 @@
472
1540
  * If a2x(1) --doctype option is not specified it defaults to manpage
473
1541
  if --format=manpage else defaults to article (previously --doctype
474
1542
  always defaulted to article).
475
- * Added an External Resources section to the [15]AsciiDoc home page.
1543
+ * Added an External Resources section to the [113]AsciiDoc home page.
476
1544
  __________________________________________________________________
477
1545
 
478
- 13. Version 8.1.0 (2006-10-22)
1546
+ 30. Version 8.1.0 (2006-10-22)
479
1547
 
480
1548
  Additions and changes
481
1549
  * AsciiDoc generated XHTML documents now display a table of contents
482
1550
  if the toc attribute is defined (JavaScript needs to be enabled for
483
1551
  this to work). Thanks to Troy Hanson who contributed this feature
484
- based on a JavaScript by Mihai Bazon. I've simplified things
485
- somewhat to match Docbook XSL Stylesheets style, see Troy's [16]tpl
486
- User Guide for a fancier layout. Use the -a toc -a numbered
487
- command-line options to produce a number table of contents.
488
- * A [17]music filter is included in the distribution ./filters/
489
- directory. It translates music in [18]LilyPond or [19]ABC notation
490
- to standard classical notation in the form of a trimmed PNG image
491
- which is inserted into the AsciiDoc output document.
492
- * Incorporated Paul Melis's Win32 filter patch. This workaround
1552
+ based on a JavaScript by Mihai Bazon. Ive simplified things
1553
+ somewhat to match Docbook XSL Stylesheets style, see Troys
1554
+ [114]tpl User Guide for a fancier layout. Use the -a toc -a
1555
+ numbered command-line options to produce a number table of
1556
+ contents.
1557
+ * A [115]music filter is included in the distribution ./filters/
1558
+ directory. It translates music in [116]LilyPond or [117]ABC
1559
+ notation to standard classical notation in the form of a trimmed
1560
+ PNG image which is inserted into the AsciiDoc output document.
1561
+ * Incorporated Paul Melis’s Win32 filter patch. This workaround
493
1562
  allows AsciiDoc to run filters under Windows.
494
1563
  * Added uninstall.sh script.
495
1564
  * Rather than proliferate a confusing number of filter block
@@ -511,13 +1580,13 @@
511
1580
  * Added {verbose} intrinsic attribute (useful for passing verbose
512
1581
  flag to filters).
513
1582
  * Added {outdir} intrinsic attribute.
514
- * Renamed {docdir} intrinsic attribute to unambiguous`{indir}
515
- ({docdir}` still works but may be removed in future release).
1583
+ * Renamed {docdir} intrinsic attribute to unambiguous {indir}
1584
+ ({docdir} still works but may be removed in future release).
516
1585
  * If asciidoc(1) outputs to stdout then intrinsic attribute {docname}
517
1586
  is extracted from the input file name.
518
1587
  __________________________________________________________________
519
1588
 
520
- 14. Version 8.0.0 (2006-08-27)
1589
+ 31. Version 8.0.0 (2006-08-27)
521
1590
 
522
1591
  This is a major release because changes to quoting and index entry
523
1592
  handling may break existing documents (see Additions and changes below
@@ -525,7 +1594,7 @@
525
1594
 
526
1595
  Please report any problems you encounter.
527
1596
 
528
- [20]Stuart Rackham
1597
+ [118]Stuart Rackham
529
1598
 
530
1599
  Additions and changes
531
1600
  * Quoting can can occur within words (based on patch submitted by
@@ -536,7 +1605,7 @@
536
1605
  arguably better choices than the apostrophe and backtick as they
537
1606
  are not confused with punctuation.
538
1607
  * The syntax for index entry macros have have been deprecated from
539
- +...+ and +...+ to ((...)) and (((...))) respectively. Rationale:
1608
+ +...+ and ++...++ to ((...)) and (((...))) respectively. Rationale:
540
1609
  + Bracketing is consistent other with [[...]] and <<...>>
541
1610
  reference macros.
542
1611
  + To easily confused with triple plus passthroughs.
@@ -559,10 +1628,10 @@
559
1628
  * Experimental rows attribute (number of source lines in table)
560
1629
  available in table markup templates (used by experimental LaTeX
561
1630
  backend).
562
- * Included install shell script written by [21]Jacob Mandelson for
1631
+ * Included install shell script written by [119]Jacob Mandelson for
563
1632
  installing the tarball distribution.
564
1633
  * Added INSTALL documentation file.
565
- * Added replacements2 substitution options -- a second replacements
1634
+ * Added replacements2 substitution options a second replacements
566
1635
  section.
567
1636
  * Added the ability to redefine normal and verbatim substitutions
568
1637
  with subsnormal and subsverbatim entries in configuration file
@@ -574,7 +1643,7 @@
574
1643
  a backslash, just escape the trailing backslash with a backslash.
575
1644
  For example:
576
1645
  abc\\=xyz
577
- Results in name=abc\ and value=xyz -- previously this would have
1646
+ Results in name=abc\ and value=xyz previously this would have
578
1647
  escaped the = character.
579
1648
  * A blank configuration file section deletes any preceding section
580
1649
  with the same name (applies to non-markup template sections).
@@ -583,19 +1652,19 @@
583
1652
  command-line attributes have precedence over document and
584
1653
  configuration file attributes).
585
1654
  * localtime attribute is now encoded from the native system encoding
586
- to the output encoding. Patch submitted by [22]FKtPp -- here's his
1655
+ to the output encoding. Patch submitted by [120]FKtPp heres his
587
1656
  description of the problem:
588
- "I am a Chinese user of AsciiDoc and I find that when I use UTF-8
1657
+ I am a Chinese user of AsciiDoc and I find that when I use UTF-8
589
1658
  (the default encoding) to write asciidoc documents in Windows
590
1659
  platform the resulting html footer line will get screwed. It was
591
1660
  caused by a localized tzname that was always encoded in the windows
592
- native encoding, which in my case is cp936."
593
- * a2x(1) can generate Open Document Text files using [23]docbook2odf.
594
- Currently docbook2odf(1) only processes a subset of DocBook,
595
- unimplemented elements are skipped.
1661
+ native encoding, which in my case is cp936.”
1662
+ * a2x(1) can generate Open Document Text files using
1663
+ [121]docbook2odf. Currently docbook2odf(1) only processes a subset
1664
+ of DocBook, unimplemented elements are skipped.
596
1665
  * The a2x(1) format option defaults to xhtml (previously a format had
597
1666
  to be specified explicitly).
598
- * The -d, --doctype=DOCTYPE option has been added to a2x(1) which is
1667
+ * The -d, \--doctype=DOCTYPE option has been added to a2x(1) which is
599
1668
  a shortcut for --asciidoc-options="--doctype=DOCTYPE".
600
1669
  * Replaced a2x(1) --no-icons and --no-copy options with their negated
601
1670
  equivalents: --icons and --copy respectively. The default behavior
@@ -618,33 +1687,33 @@
618
1687
  output file was missing or older than the source file.
619
1688
  __________________________________________________________________
620
1689
 
621
- 15. Version 7.1.2 (2006-03-07)
1690
+ 32. Version 7.1.2 (2006-03-07)
622
1691
 
623
1692
  Additions and changes
624
- * Support for [24]ASCIIMathML has been added. See Appendix I:
1693
+ * Support for [122]ASCIIMathML has been added. See Appendix I:
625
1694
  ASCIIMathML Support in the User Guide and the examples at
626
- [25]http://www.methods.co.nz/asciidoc/asciimath.html.
1695
+ [123]http://www.methods.co.nz/asciidoc/asciimath.html.
627
1696
  * You can now prefix quoted text with inline attributes lists. You
628
1697
  can use this to set font size and color (XHTML and HTML outputs).
629
- * Added #...\# quoting -- it does nothing -- it's purpose is to allow
1698
+ * Added ##...## quoting it does nothing its purpose is to allow
630
1699
  inline attributes to be applied to normal text.
631
- * An [26]inline passthrough mechanism has been implemented.
632
- * Configuration file comment lines can be escaped with a backslash --
633
- this is to allows the inclusion of configuration lines that start
1700
+ * An inline passthrough mechanism has been implemented.
1701
+ * Configuration file comment lines can be escaped with a backslash
1702
+ this is to allows the inclusion of configuration lines that start
634
1703
  with a hash character.
635
1704
  * The scriptsdir attribute can be used to specify the name of the
636
- directory containing linked JavaScripts (see the [27]User Guide for
637
- details.
1705
+ directory containing linked JavaScripts (see the [124]User Guide
1706
+ for details.
638
1707
  * The BackendBlock has been renamed PassthroughBlock for consistency
639
1708
  with the new inline passthrough naming.
640
1709
  * a2x(1) now works with the older bash(1) version 2.05b. Patch
641
- submitted by [28]Francis Daly.
642
- * Content included by the \include1::[] system macro is no longer
1710
+ submitted by [125]Francis Daly.
1711
+ * Content included by the include1::[] system macro is no longer
643
1712
  subject to attribute substitution so that ambiguities no longer
644
1713
  arise when used to include CSS or JavaScript files.
645
1714
  __________________________________________________________________
646
1715
 
647
- 16. Version 7.1.1 (2006-02-24)
1716
+ 33. Version 7.1.1 (2006-02-24)
648
1717
 
649
1718
  Additions and changes
650
1719
  * The caption attribute can be used to customize admonition captions
@@ -662,7 +1731,7 @@
662
1731
 
663
1732
  Bug fixes
664
1733
  * a2x(1) failed when configuration files were installed in the global
665
- /etc/asciidoc/ directory -- it was only searching the directory
1734
+ /etc/asciidoc/ directory it was only searching the directory
666
1735
  containing the asciidoc executable (thanks to Christian Wiese for
667
1736
  finding and submitting a patch this bug).
668
1737
  * The html4 backend admonition caption now correctly displays the
@@ -670,7 +1739,7 @@
670
1739
  attribute).
671
1740
  __________________________________________________________________
672
1741
 
673
- 17. Version 7.1.0 (2006-01-13)
1742
+ 34. Version 7.1.0 (2006-01-13)
674
1743
 
675
1744
  Additions and changes
676
1745
  * a2x(1) toolchain wrapper utility. This overcomes the biggest hurdle
@@ -697,12 +1766,13 @@
697
1766
  * Packager notes (appendix B) have been updated to reflect the needs
698
1767
  of a2x(1).
699
1768
 
700
- Important: The renaming of the xhtml11 backend imagesdir intrinsic
701
- attribute and it's new default value introduces a backward
702
- compatibility issue: if you use the icons attribute you will need to
703
- either move your icons to the new default ./images/icons location or
704
- include an --attribute iconsdir="your_icons_path" option in your
705
- asciidoc commands.
1769
+ Important
1770
+ The renaming of the xhtml11 backend imagesdir intrinsic attribute and
1771
+ it’s new default value introduces a backward compatibility issue: if
1772
+ you use the icons attribute you will need to either move your icons to
1773
+ the new default ./images/icons location or include an
1774
+ --attribute{nbsp}iconsdir="your_icons_path" option in your asciidoc
1775
+ commands.
706
1776
 
707
1777
  Bug fixes
708
1778
  * Backslash line continuation is now observed in verbatim paragraphs.
@@ -710,7 +1780,7 @@
710
1780
  ./examples/website/build-website.sh script.
711
1781
  __________________________________________________________________
712
1782
 
713
- 18. Version 7.0.4 (2005-12-08)
1783
+ 35. Version 7.0.4 (2005-12-08)
714
1784
 
715
1785
  Additions and changes
716
1786
  * Added ternary conditional attributes
@@ -724,13 +1794,13 @@
724
1794
  still accepts the --safe option).
725
1795
  * Backend Blocks are now flagged unsafe (they could be used to
726
1796
  include arbitrary and hence potentially unsafe output content).
727
- * Filters are no longer considered unsafe. There's not much point in
1797
+ * Filters are no longer considered unsafe. Theres not much point in
728
1798
  insisting on filter safety since the installation of an unsafe
729
1799
  filter would require the introduction of new or modified
730
- configuration files -- if your application configurations can be
731
- compromised you're in all sorts of trouble (safe mode protects
1800
+ configuration files if your application configurations can be
1801
+ compromised youre in all sorts of trouble (safe mode protects
732
1802
  against unsafe input files not unsafe configuration). As with all
733
- filters, before installing, you should verify that they can't be
1803
+ filters, before installing, you should verify that they cant be
734
1804
  coerced into generating malicious output or exposing sensitive
735
1805
  information.
736
1806
 
@@ -739,16 +1809,16 @@
739
1809
  Guide.
740
1810
  __________________________________________________________________
741
1811
 
742
- 19. Version 7.0.3 (2005-12-01)
1812
+ 36. Version 7.0.3 (2005-12-01)
743
1813
 
744
1814
  Additions and changes
745
- * Added --safe and --unsafe command-line options -- AsciiDoc can now
1815
+ * Added --safe and --unsafe command-line options AsciiDoc can now
746
1816
  be executed in a safe mode which disallows the execution of
747
1817
  arbitrary code or the inclusion of arbitrary files (see
748
- [29]Appendix C in the AsciiDoc User Guide).
749
- * Included [30]source-highlight filter in the distribution
1818
+ [126]Appendix C in the AsciiDoc User Guide).
1819
+ * Included [127]source-highlight filter in the distribution
750
1820
  ./examples/source-highlight-filter/ directory (based on filter
751
- submitted by [31]Ryan Phillips).
1821
+ submitted by [128]Ryan Phillips).
752
1822
  * Included the DocBook XSL Stylesheets 1.69.1 customizations used to
753
1823
  generate the distributed AsciiDoc documentation (read the
754
1824
  asciidoc-docbook-xsl.txt file in the distribution ./docbook-xsl/
@@ -763,7 +1833,7 @@
763
1833
  because default border styles vary from browser to browser.
764
1834
  __________________________________________________________________
765
1835
 
766
- 20. Version 7.0.2 (2005-08-28)
1836
+ 37. Version 7.0.2 (2005-08-28)
767
1837
 
768
1838
  Additions and changes
769
1839
  * There are now long versions of all AsciiDoc options.
@@ -779,19 +1849,19 @@
779
1849
  * Documentation errata.
780
1850
  __________________________________________________________________
781
1851
 
782
- 21. Version 7.0.1 (2005-06-24)
1852
+ 38. Version 7.0.1 (2005-06-24)
783
1853
 
784
1854
  Additions and changes
785
- * Reverted to use of strong, em, tt XHTML tags -- they're more
786
- obvious and no less correct than span tags, besides, the generated
787
- file sizes are smaller (the User Guide was 11% smaller).
1855
+ * Reverted to use of strong, em, tt XHTML tags theyre more obvious
1856
+ and no less correct than span tags, besides, the generated file
1857
+ sizes are smaller (the User Guide was 11% smaller).
788
1858
  * Table title rendered with caption tag rather than a separate div.
789
1859
  * The AsciiDoc stylesdir attribute (if specified) is now recognized
790
1860
  when searching for embedded stylesheets (previously only searched
791
1861
  default ./stylesheets directory).
792
- * Default charset encoding changed from ISO-8859-1 to UTF-8 -- it's
1862
+ * Default charset encoding changed from ISO-8859-1 to UTF-8 its
793
1863
  less language specific and displays most common languages.
794
- * \template::[] macros now expand in all configuration file sections
1864
+ * template::[] macros now expand in all configuration file sections
795
1865
  previously only in markup template sections.
796
1866
  * Cleaned up example website layout CSS and configuration
797
1867
  (presentation has not been changed).
@@ -807,32 +1877,32 @@
807
1877
  * AsciiDoc table format attribute in table attribute lists were not
808
1878
  recognized.
809
1879
  * The nested horizontal labeled list example in the AsciiDoc User
810
- Guide has been dropped -- it generated invalid DocBook markup.
1880
+ Guide has been dropped it generated invalid DocBook markup.
811
1881
  __________________________________________________________________
812
1882
 
813
- 22. Version 7.0.0 (2005-06-06)
1883
+ 39. Version 7.0.0 (2005-06-06)
814
1884
 
815
1885
  This is a major release with many code and documentation changes.
816
1886
  Please report any problems you encounter.
817
1887
 
818
- [32]Stuart Rackham
1888
+ [129]Stuart Rackham
819
1889
 
820
1890
  Additions and changes
821
1891
  * A new xhtml11 backend generates XHTML 1.1 with integrated CSS2
822
1892
  replacing the previous xhtml, css, and css-embedded backends.
823
1893
  * The CSS stylesheets have finally been rewritten.
824
- * The asciidoc(1) command help now includes user [33]customizable
1894
+ * The asciidoc(1) command help now includes user [130]customizable
825
1895
  help topics. When asciidoc is invoked with the --help option the
826
1896
  command argument is interpreted as a help topic.
827
1897
  * The previous example website has been replaced by the actual
828
1898
  AsciiDoc website (see ./examples/website/.
829
1899
  * XHTML generation options now controlled by the following
830
1900
  attributes: badges, linkcss, icons, numbered, quirks, theme,
831
- stylesdir, imagesdir (see the [34]User Guide for details.
1901
+ stylesdir, imagesdir (see the [131]User Guide for details.
832
1902
  * By default HTML and XHTML are output as stand-alone documents (no
833
1903
  embedded CSS and no linked admonition icon images).
834
1904
  * Documents encoded with the UTF-8 Unicode character set are now
835
- processed thanks to a patch supplied by [35]Viktor Vasilev.
1905
+ processed thanks to a patch supplied by [132]Viktor Vasilev.
836
1906
  * The -a ^name command-line syntax to undefine an attribute has been
837
1907
  deprecated in favor of the -a name! syntax.
838
1908
  * AttributeEntry syntax addition: :name!: to undefine name attribute.
@@ -861,7 +1931,7 @@
861
1931
  * The section-numbers section numbering attribute has be renamed
862
1932
  numbered.
863
1933
  * Dropped the #UNDER CONSTRUCTION# block macro.
864
- * Rewrote Paragraph and DelimitedBlock handlers adding a [36]styles
1934
+ * Rewrote Paragraph and DelimitedBlock handlers adding a [133]styles
865
1935
  configuration entry.
866
1936
 
867
1937
  Bug fixes
@@ -869,12 +1939,12 @@
869
1939
  content.
870
1940
  * Manpage command names containing dashes (in the manpage NAME
871
1941
  section) were misinterpreted as the spaced dash command
872
- name/purpose separator. Bug report and patch supplied by [37]David
1942
+ name/purpose separator. Bug report and patch supplied by [134]David
873
1943
  Greaves.
874
1944
  * Unexpected error following malformed author line error.
875
1945
  __________________________________________________________________
876
1946
 
877
- 23. Version 6.0.3 (2005-04-20)
1947
+ 40. Version 6.0.3 (2005-04-20)
878
1948
 
879
1949
  Additions and changes
880
1950
  * Special characters are now substituted in AttributeEntry element
@@ -888,8 +1958,8 @@
888
1958
  * Single lines starting with two forward slashes hard up against the
889
1959
  left margin are treated as comments and are not processed.
890
1960
  * Renamed section delimited block option to sectionbody to more
891
- accurately reflect it's role.
892
- * Added a List Continuation block -- a specialized delimited block
1961
+ accurately reflect its role.
1962
+ * Added a List Continuation block a specialized delimited block
893
1963
  that is functionally equivalent to the List Item Continuation
894
1964
  feature except that the list contained within the block does not
895
1965
  require explicit + list item continuation lines.
@@ -902,10 +1972,10 @@
902
1972
  exceptions to occur.
903
1973
  __________________________________________________________________
904
1974
 
905
- 24. Version 6.0.2 (2005-03-30)
1975
+ 41. Version 6.0.2 (2005-03-30)
906
1976
 
907
1977
  Additions and changes
908
- * Three new system block macros have been added -- eval, sys and sys2
1978
+ * Three new system block macros have been added eval, sys and sys2
909
1979
  which are the block macro equivalents to the same named system
910
1980
  attributes.
911
1981
  * Intrinsic macros have been renamed system macros along with action
@@ -918,14 +1988,14 @@
918
1988
  * Asciidoc now searches in /etc/asciidoc/filters for filters.
919
1989
  __________________________________________________________________
920
1990
 
921
- 25. Version 6.0.1 (2005-03-06)
1991
+ 42. Version 6.0.1 (2005-03-06)
922
1992
 
923
1993
  Additions and changes
924
1994
  * A global configuration file location /etc/asciidoc has been added
925
1995
  and is now processed before all other locations (patch supplied by
926
- [38]Fredrik Steen).
1996
+ [135]Fredrik Steen).
927
1997
  * Recoded tempfile.mktemp() and other artifacts that are no longer
928
- necessary or desirable (patches supplied by [39]Fredrik Steen).
1998
+ necessary or desirable (patches supplied by [136]Fredrik Steen).
929
1999
  * Added BUGS file to the distribution.
930
2000
 
931
2001
  Bug fixes
@@ -933,29 +2003,30 @@
933
2003
  illegal CSS in files generated by the css-embedded backend.
934
2004
  __________________________________________________________________
935
2005
 
936
- 26. Version 6.0.0 (2005-01-28)
2006
+ 43. Version 6.0.0 (2005-01-28)
937
2007
 
938
2008
  This release has had some fairly major code and documentation changes.
939
2009
  Please report any problems you encounter.
940
2010
 
941
- [40]Stuart Rackham
2011
+ [137]Stuart Rackham
942
2012
 
943
- A lot of new stuff. A new major version number -- some regression
2013
+ A lot of new stuff. A new major version number some regression
944
2014
  incompatibility (hopefully mitigated by deprecated warnings).
945
2015
 
946
- Went mad trying to rein in the current feature anarchy -- established a
2016
+ Went mad trying to rein in the current feature anarchy established a
947
2017
  unified notion of document attributes. Attempted to introduce a
948
- consistent vocabulary -- renamed many poorly or inconsistently named
2018
+ consistent vocabulary renamed many poorly or inconsistently named
949
2019
  entities.
950
2020
 
951
2021
  Actually, deprecated syntax is still processed correctly in almost all
952
2022
  cases. One source of incompatibility that may arise if you have
953
2023
  customized CSS stylesheets is the change of AsciiDoc CSS class names
954
- (see below). I guess the moral is if you've done a lot of configuration
2024
+ (see below). I guess the moral is if youve done a lot of configuration
955
2025
  file customization and are happy with version 5 then you may want to
956
2026
  stay put.
957
2027
 
958
- Note: This version requires Python 2.3 or better to run.
2028
+ Note
2029
+ This version requires Python 2.3 or better to run.
959
2030
 
960
2031
  Additions and changes
961
2032
  * Glossary entries have been renamed attributes. This eliminates
@@ -970,7 +2041,7 @@
970
2041
  * Quoted text can now span multiple lines (thanks to James Bowlin for
971
2042
  this patch).
972
2043
  * Inline macros can now span multiple lines.
973
- * ``double backtick / apostrophe'' quotes generate "curly quotes".
2044
+ * ‘`double backtick / apostrophe' quotes generate curly quotes”.
974
2045
  * A warning is now emitted for out of order list item (applies to
975
2046
  explicitly enumerated numbered list items).
976
2047
  * Added include action attribute.
@@ -983,7 +2054,8 @@
983
2054
  * An {stylesdir} attribute specifies the location of CSS stylesheets
984
2055
  when generating styled HTML (the default location for configured
985
2056
  markup is .).
986
- * list entry has been deprecated, use {0} instead.
2057
+ * The use of the (often inappropriately named) {caption} attribute
2058
+ list entry has been deprecated, use {0} instead.
987
2059
  * New ExampleBlock delimited block along with associated variants
988
2060
  Note, Tip, Warning, Caution and Important.
989
2061
  * The docbook.conf file now facilitates the optional inclusion of a
@@ -994,10 +2066,10 @@
994
2066
  BackendBlock; SimpleSection to SectionBody. Any corresponding CSS
995
2067
  class names have also been changed which could result in backward
996
2068
  incompatibility in customized stylesheets.
997
- * Swapped plain DocBook admonition icons for Jimmac's DocBook icons
998
- ([41]http://jimmac.musichall.cz/ikony.php3). The original plain
2069
+ * Swapped plain DocBook admonition icons for Jimmacs DocBook icons
2070
+ ([138]http://jimmac.musichall.cz/ikony.php3). The original plain
999
2071
  icons have been moved to ./images/plain.
1000
- * Renamed html backend to xhtml to better reflect it's function
2072
+ * Renamed html backend to xhtml to better reflect its function
1001
2073
  (former html-4 backend renamed to html).
1002
2074
  * A new inline anchor macro syntax [[[<id>]]] is available, it
1003
2075
  displays [<id>] at the anchor location and is for anchoring
@@ -1010,7 +2082,7 @@
1010
2082
  the preceding list item element with a line containing a single
1011
2083
  plus character.
1012
2084
  * A new Horizontal Labeled List list type has been added. Generates
1013
- two column list -- the first column contains the list element
2085
+ two column list the first column contains the list element
1014
2086
  labels, the second contains the element text. Same syntax as
1015
2087
  Vertical Labeled Lists except the double colon label suffix is
1016
2088
  followed by the start of the list item text.
@@ -1027,10 +2099,10 @@
1027
2099
  now indents text correctly.
1028
2100
  __________________________________________________________________
1029
2101
 
1030
- 27. Version 5.1.1 (2004-10-10)
2102
+ 44. Version 5.1.1 (2004-10-10)
1031
2103
 
1032
2104
  15-December-2004: Interim update: Updated asciidoc.py to fix broken
1033
- join_lines function -- no other changes.
2105
+ join_lines function no other changes.
1034
2106
  * PDF documentation is now produced from DocBook XML using XSLTLib
1035
2107
  and FOP. Previously we processed DocBook SGML with jw(1) (which
1036
2108
  used Dvips to convert DVI files to PDF). FOP has come a long way in
@@ -1044,13 +2116,13 @@
1044
2116
  * Special characters are emitted using decimal Unicode character
1045
2117
  codes (previously used named character entities which cannot be
1046
2118
  assumed included in non-HTML documents).
1047
- * Added registered trademark to [replacements].
2119
+ * Added registered trademark ® to [replacements].
1048
2120
  * CSS stylesheet tweaks.
1049
2121
  * Admonitions (Note, Tip, Important, Warning, Caution) include icons
1050
2122
  when generating css output.
1051
2123
  __________________________________________________________________
1052
2124
 
1053
- 28. Version 5.1.0 (2004-09-18)
2125
+ 45. Version 5.1.0 (2004-09-18)
1054
2126
 
1055
2127
  * Callouts have been implemented (see the Callouts section of the
1056
2128
  AsciiDoc User Guide for details).
@@ -1059,7 +2131,7 @@
1059
2131
  * Added CSS stylesheet for HTML generated from DocBook XML using XSL
1060
2132
  stylesheets.
1061
2133
  * Distribution contains HTML Help formatted User Guide
1062
- (./doc/asciidoc.chm), the User Guide tells you how it's generated.
2134
+ (./doc/asciidoc.chm), the User Guide tells you how its generated.
1063
2135
  * Images referred to by distributed stylesheets are now located in
1064
2136
  the ./images subdirectory (previously located in .).
1065
2137
  * Filters path names are now handled properly under Cygwin.
@@ -1067,23 +2139,23 @@
1067
2139
  polishing.
1068
2140
  __________________________________________________________________
1069
2141
 
1070
- 29. Version 5.0.9 (2004-09-09)
2142
+ 46. Version 5.0.9 (2004-09-09)
1071
2143
 
1072
2144
  * The convention of using a .asc file extension for AsciiDoc files
1073
2145
  has been dropped in favor of the familiar .txt extension. It makes
1074
2146
  more sense in that AsciiDoc is a text presentation format and
1075
2147
  because .asc clashed with the same extension used by other
1076
- applications. It's only a naming convention -- you don't have to
1077
- switch if you don't want to.
2148
+ applications. Its only a naming convention you dont have to
2149
+ switch if you dont want to.
1078
2150
  * Changed the subscript formatting character from underline to tilde
1079
2151
  since underscores in file names are reasonably common (especially
1080
2152
  in link and image macros).
1081
2153
  * An alternative syntax for the index term inline macro has been
1082
- added: <primary>,<secondary>,<tertiary>.
2154
+ added: ++<primary>,<secondary>,<tertiary>++.
1083
2155
  * Index terms that have secondary and tertiary entries now
1084
2156
  additionally generate separate index terms for the secondary and
1085
2157
  tertiary entries.
1086
- * A <primary> index term inline macro has been added which displays
2158
+ * A +<primary>+ index term inline macro has been added which displays
1087
2159
  the term in the primary text flow.
1088
2160
  * Added alternative variable list definition using double semi-colon
1089
2161
  terminator as opposed to the standard double colon terminator so
@@ -1092,7 +2164,7 @@
1092
2164
  outputs.
1093
2165
  * Python version compatibility is checked at startup.
1094
2166
  * Preface and appendix section titles in multi-part Book documents
1095
- are meant to be out of sequence -- warnings are no longer emitted
2167
+ are meant to be out of sequence warnings are no longer emitted
1096
2168
  when outputting HTML.
1097
2169
  * Empty section warnings have been replaced by error messages and are
1098
2170
  emitted only if invalid markup would result.
@@ -1111,7 +2183,7 @@
1111
2183
  * Documentation additions and corrections.
1112
2184
  __________________________________________________________________
1113
2185
 
1114
- 30. Version 5.0.8 (2004-05-15)
2186
+ 47. Version 5.0.8 (2004-05-15)
1115
2187
 
1116
2188
  * Spurious out of sequence level 2 warnings no longer appear when
1117
2189
  processing book document multi-part book top level Preface and
@@ -1124,12 +2196,12 @@
1124
2196
  documents.
1125
2197
  * Added superscripts and subscripts to the standard PRS configuration
1126
2198
  files.
1127
- * Adjusted CSS stylesheets so list titles don't have so much space
2199
+ * Adjusted CSS stylesheets so list titles dont have so much space
1128
2200
  between title and first list item (broken in IE6 due to poor CSS
1129
2201
  compliance). Lessened sidebar title top margin.
1130
2202
  __________________________________________________________________
1131
2203
 
1132
- 31. Version 5.0.7 (2004-04-22)
2204
+ 48. Version 5.0.7 (2004-04-22)
1133
2205
 
1134
2206
  * The version 5.0.6 README incorrectly stated that AsciiDoc would run
1135
2207
  under Python 2.0, in fact it requires Python 2.1 or better. The
@@ -1150,7 +2222,7 @@
1150
2222
  with with white space.
1151
2223
  __________________________________________________________________
1152
2224
 
1153
- 32. Version 5.0.6 (2004-03-07)
2225
+ 49. Version 5.0.6 (2004-03-07)
1154
2226
 
1155
2227
  * New image macro implements optional image scaling and linking and
1156
2228
  works in both inline and block contexts. The image macro obsolesces
@@ -1176,17 +2248,17 @@
1176
2248
  * Section titles can be optionally suffixed with title arguments
1177
2249
  enclosed in double square brackets.
1178
2250
  * A replacement has been added to asciidoc.conf to replace inline
1179
- double dashes with the -- entity.
1180
- * Changed the .UNDER-CONSTRUCTION. macro syntax to UNDER-CONSTRUCTION
1181
- so it is not mistaken for a BlockTitle. Similarly changed the .NEW.
1182
- replacement with #NEW#.
1183
- * &35;NEW# and #UNDER-CONSTRUCTION macros are now included in the
1184
- DocBook backend.
2251
+ double dashes with the &mdash; entity.
2252
+ * Changed the .UNDER-CONSTRUCTION. macro syntax to
2253
+ #UNDER-CONSTRUCTION# so it is not mistaken for a BlockTitle.
2254
+ Similarly changed the .NEW. replacement with &#35;NEW&#35;.
2255
+ * &#35;NEW&#35; and #UNDER-CONSTRUCTION# macros are now included in
2256
+ the DocBook backend.
1185
2257
  * Replaced shipped smallnew.gif with smallnew.png.
1186
2258
  * Documentation tidy ups.
1187
2259
  __________________________________________________________________
1188
2260
 
1189
- 33. Version 5.0.5 (2004-02-25)
2261
+ 50. Version 5.0.5 (2004-02-25)
1190
2262
 
1191
2263
  * Fixed the disappearing paragraph titles problem that was caused by
1192
2264
  Inline macros (incorrectly) processing BlockTitles.
@@ -1195,7 +2267,7 @@
1195
2267
  invalid output markup.
1196
2268
  __________________________________________________________________
1197
2269
 
1198
- 34. Version 5.0.4 (2004-02-09)
2270
+ 51. Version 5.0.4 (2004-02-09)
1199
2271
 
1200
2272
  * Reinstated missing infile, outfile, filetype and
1201
2273
  filetype-<filetype> glossary entries.
@@ -1203,7 +2275,7 @@
1203
2275
  this has now been documented.
1204
2276
  __________________________________________________________________
1205
2277
 
1206
- 35. Version 5.0.3 (2004-01-23)
2278
+ 52. Version 5.0.3 (2004-01-23)
1207
2279
 
1208
2280
  * Fixed problem that caused any filters directory file containing
1209
2281
  .conf (not just those with the .conf extension) from being loaded.
@@ -1220,7 +2292,7 @@
1220
2292
  from configuration file substitution sections.
1221
2293
  __________________________________________________________________
1222
2294
 
1223
- 36. Version 5.0.2 (2003-12-18)
2295
+ 53. Version 5.0.2 (2003-12-18)
1224
2296
 
1225
2297
  * New (alternative) anchor and xref macro syntax (old syntax still
1226
2298
  valid).
@@ -1234,17 +2306,17 @@
1234
2306
  * Documentation updates and corrections.
1235
2307
  __________________________________________________________________
1236
2308
 
1237
- 37. Version 5.0.1 (2003-12-09)
2309
+ 54. Version 5.0.1 (2003-12-09)
1238
2310
 
1239
2311
  * Fixed problem with anchor tag when generating CSS styled HTML.
1240
2312
  __________________________________________________________________
1241
2313
 
1242
- 38. Version 5.0 (2003-12-08)
2314
+ 55. Version 5.0 (2003-12-08)
1243
2315
 
1244
2316
  This release has had some fairly major code and documentation changes.
1245
2317
  Please report any problems you encounter.
1246
2318
 
1247
- [42]Stuart Rackham
2319
+ [139]Stuart Rackham
1248
2320
 
1249
2321
  * AsciiDoc can now produce a full-blown multi-part DocBook book
1250
2322
  including dedication, abstract, preface, colophon, glossary,
@@ -1294,7 +2366,7 @@
1294
2366
  .docbook to .xml (.sgml for the docbook-sgml backend).
1295
2367
  __________________________________________________________________
1296
2368
 
1297
- 39. Version 4.2 (2003-11-26)
2369
+ 56. Version 4.2 (2003-11-26)
1298
2370
 
1299
2371
  * The default HTML output is now XHTML 1.0 markup. To output the
1300
2372
  former HTML 4 markup specify the html-4 backend.
@@ -1312,7 +2384,7 @@
1312
2384
  This is in preference to the existing delimiter embedded arguments.
1313
2385
  Reasons:
1314
2386
  + The syntax is in keeping with the Tables arguments syntax.
1315
- + It's easier to enter and implements line continuation.
2387
+ + Its easier to enter and implements line continuation.
1316
2388
  * A new QuoteBlock DelimitedBlock definition has been added to the
1317
2389
  distribution configuration files.
1318
2390
  * The table arguments lines can be continued using the backslash line
@@ -1322,7 +2394,7 @@
1322
2394
  arguments.
1323
2395
  __________________________________________________________________
1324
2396
 
1325
- 40. Version 4.1 (2003-11-13)
2397
+ 57. Version 4.1 (2003-11-13)
1326
2398
 
1327
2399
  * Added DSV (Delimiter Separated Values) tables format.
1328
2400
  * {eval:<expr>} glossary references drop the containing line if
@@ -1342,11 +2414,11 @@
1342
2414
  * Fixed: CSS styled HTML tables are now fully XHTML 1.0 conformant.
1343
2415
  * Fixed: tablewidth was processed incorrectly when passed as table
1344
2416
  argument.
1345
- * Fixed: Glossary references like {x={y}} were one character off if
2417
+ * Fixed: Glossary references like {x=\{y}} were one character off if
1346
2418
  {x] was defined and {y} was not.
1347
2419
  __________________________________________________________________
1348
2420
 
1349
- 41. Version 4.0 (2003-11-08)
2421
+ 58. Version 4.0 (2003-11-08)
1350
2422
 
1351
2423
  This release has had some fairly major code and documentation changes.
1352
2424
  Please report any problems you encounter.
@@ -1394,7 +2466,7 @@
1394
2466
  * Many documentation changes/additions/corrections.
1395
2467
  __________________________________________________________________
1396
2468
 
1397
- 42. Version 3.2.2 (2003-10-26)
2469
+ 59. Version 3.2.2 (2003-10-26)
1398
2470
 
1399
2471
  * Added -n option (synonym for -g section-numbers).
1400
2472
  * Dropped the processing commentary (hey, this is Unix).
@@ -1427,7 +2499,7 @@
1427
2499
  * Documentation changes/additions/corrections.
1428
2500
  __________________________________________________________________
1429
2501
 
1430
- 43. Version 3.2 (2003-05-26)
2502
+ 60. Version 3.2 (2003-05-26)
1431
2503
 
1432
2504
  * Added a -s command-line option to suppress the output of [header]
1433
2505
  and [footer] sections.
@@ -1457,7 +2529,7 @@
1457
2529
  * Internal code tidy up.
1458
2530
  __________________________________________________________________
1459
2531
 
1460
- 44. Version 3.1 (2003-05-18)
2532
+ 61. Version 3.1 (2003-05-18)
1461
2533
 
1462
2534
  * In version 3.0 a [macros] section entry of the form name was
1463
2535
  equivalent to name=. An entry of the form name now undefines the
@@ -1487,7 +2559,7 @@
1487
2559
  option).
1488
2560
  __________________________________________________________________
1489
2561
 
1490
- 45. Version 3.0 (2003-05-13)
2562
+ 62. Version 3.0 (2003-05-13)
1491
2563
 
1492
2564
  This version is the culmination of work begun in the 2.x releases
1493
2565
  whereby fixed policy has been replaced by extensible mechanisms.
@@ -1523,14 +2595,14 @@
1523
2595
  configuration files.
1524
2596
  __________________________________________________________________
1525
2597
 
1526
- 46. Version 2.2 (2003-04-07)
2598
+ 63. Version 2.2 (2003-04-07)
1527
2599
 
1528
2600
  * The master.conf configuration file name has been deprecated in
1529
2601
  favor of asciidoc.conf.
1530
2602
  * The standard configuration files set is now loaded from the
1531
2603
  .asciidoc folder in the users home directory (if it exists) and
1532
2604
  then from the source document directory. Configuration files that
1533
- don't exist are silently skipped.
2605
+ dont exist are silently skipped.
1534
2606
  * Configuration files named like the source file will be
1535
2607
  automatically loaded if they are found in the source file
1536
2608
  directory. For example if the source file is mydoc.asc and the -b
@@ -1560,22 +2632,21 @@
1560
2632
  * Corrected {infile} and {outfile} glossary entry documentation.
1561
2633
  * File inclusion is now limited to a depth of 5 to catch recursion
1562
2634
  loops.
1563
- * Inline tags have been deprecated, they're not necessary and they
2635
+ * Inline tags have been deprecated, theyre not necessary and they
1564
2636
  immediately make the source document backend specific. Use
1565
2637
  CustomBlocks or Substitutions instead.
1566
2638
  __________________________________________________________________
1567
2639
 
1568
- 47. Version 2.1 (2003-03-17)
2640
+ 64. Version 2.1 (2003-03-17)
1569
2641
 
1570
2642
  * Added section auto numbering {sectnum} glossary entry
1571
2643
  (auto-numbering function contributed by Ludovico Magnocavallo).
1572
2644
  * asciidoc(1) now correctly returns non-zero exit status if an error
1573
2645
  occurs.
1574
2646
  * An AsciiDoc example website has been included in the AsciiDoc
1575
- distribution examples/website directory (also online at
1576
- [43]http://www.methods.co.nz/asciidoc/examples/website/).
2647
+ distribution examples/website directory.
1577
2648
  * NOTE: The asciidoc wrapper script included in the 2.0 distribution
1578
- has been dropped, if you've symlinked or aliased to asciidoc you'll
2649
+ has been dropped, if youve symlinked or aliased to asciidoc youll
1579
2650
  need to change them to point directly to asciidoc.py instead.
1580
2651
  * An RCS $Id$ marker can be used as the document header revision line
1581
2652
  (based on a patch submitted by Ludovico Magnocavallo).
@@ -1595,7 +2666,7 @@
1595
2666
  {asciidoc-version} (to it consistent with other entries).
1596
2667
  __________________________________________________________________
1597
2668
 
1598
- 48. Version 2.0 (2003-02-24)
2669
+ 65. Version 2.0 (2003-02-24)
1599
2670
 
1600
2671
  * The emphasized, strong and monospaced words options have been
1601
2672
  generalized with the introduction of macro based special words
@@ -1649,14 +2720,14 @@
1649
2720
  * Added author and author-mail meta tags to HTML configuration files.
1650
2721
  __________________________________________________________________
1651
2722
 
1652
- 49. Version 1.5 (2003-01-08)
2723
+ 66. Version 1.5 (2003-01-08)
1653
2724
 
1654
2725
  * Implemented sidebar document elements.
1655
2726
  * Explicit checks for user specified configuration files and input
1656
2727
  file (rather than throwing exception).
1657
2728
  __________________________________________________________________
1658
2729
 
1659
- 50. Version 1.4 (2003-01-04)
2730
+ 67. Version 1.4 (2003-01-04)
1660
2731
 
1661
2732
  * New configuration file options emphasizedwords and strongwords.
1662
2733
  These allow the definition of words that will always be emphasized
@@ -1676,7 +2747,7 @@
1676
2747
  * More documentation additions and tidy ups.
1677
2748
  __________________________________________________________________
1678
2749
 
1679
- 51. Version 1.3 (2003-01-01)
2750
+ 68. Version 1.3 (2003-01-01)
1680
2751
 
1681
2752
  * A new strong text formatting convention has been implemented: Word
1682
2753
  phrases enclosed in pairs of single quote characters (acute
@@ -1705,7 +2776,7 @@
1705
2776
  * Code, configuration file and documentation tidy ups.
1706
2777
  __________________________________________________________________
1707
2778
 
1708
- 52. Version 1.2 (2002-12-28)
2779
+ 69. Version 1.2 (2002-12-28)
1709
2780
 
1710
2781
  * Implemented include URL to allow file inclusion.
1711
2782
  * fileextension configuration file [option] renamed to more sensible
@@ -1720,7 +2791,7 @@
1720
2791
  * Bug fixes.
1721
2792
  __________________________________________________________________
1722
2793
 
1723
- 53. Version 1.1 (2002-12-03)
2794
+ 70. Version 1.1 (2002-12-03)
1724
2795
 
1725
2796
  * Added css (cascading style sheets) backend
1726
2797
  * Implemented IndentedBlock document element.
@@ -1737,60 +2808,156 @@
1737
2808
  * Fixed error that occurred when == title underline was used.
1738
2809
  __________________________________________________________________
1739
2810
 
1740
- 54. Version 1.0 (2002-11-25)
2811
+ 71. Version 1.0 (2002-11-25)
1741
2812
 
1742
2813
  First AsciiDoc public release along with AsciiDoc web site
1743
- ([44]http://www.methods.co.nz/asciidoc/) and SourceForge.net project
1744
- registration ([45]https://sourceforge.net/projects/asciidoc/).
2814
+ ([140]http://www.methods.co.nz/asciidoc/) and SourceForge.net project
2815
+ registration ([141]https://sourceforge.net/projects/asciidoc/).
1745
2816
  __________________________________________________________________
1746
2817
 
1747
- Version 8.3.3
1748
- Last updated 2009-01-02 12:59:07 NZDT
2818
+ Version 8.6.5
2819
+ Last updated 2011-05-19 12:14:31 NZST
1749
2820
 
1750
2821
  References
1751
2822
 
1752
- 1. http://www.methods.co.nz/asciidoc/INSTALL.html
1753
- 2. http://www.methods.co.nz/asciidoc/newtables.html
1754
- 3. http://www.methods.co.nz/asciidoc/newlists.html
1755
- 4. http://www.methods.co.nz/asciidoc/userguide.html#X77
1756
- 5. http://www.methods.co.nz/asciidoc/userguide.html#X76
1757
- 6. http://www.methods.co.nz/asciidoc/latexmath.pdf
1758
- 7. http://www.methods.co.nz/asciidoc/asciimathml.html
1759
- 8. http://www.methods.co.nz/asciidoc/latexmathml.html
1760
- 9. http://www.methods.co.nz/asciidoc/source-highlight-filter.html
1761
- 10. https://sharesource.org/hg/asciidoc/
1762
- 11. http://en.wikipedia.org/wiki/Data:_URI_scheme
1763
- 12. http://www.methods.co.nz/asciidoc/faq.html
1764
- 13. http://www.maths.nottingham.ac.uk/personal/drw/lm.html
1765
- 14. http://www.methods.co.nz/asciidoc/asciimath.html
1766
- 15. http://www.methods.co.nz/asciidoc/index.html
1767
- 16. http://tpl.sourceforge.net/userguide.html
1768
- 17. http://www.methods.co.nz/asciidoc/music-filter.html
1769
- 18. http://lilypond.org/
1770
- 19. http://abcnotation.org.uk/
1771
- 20. mailto:srackham@gmail.com
1772
- 21. mailto:jlm@ofb.net
1773
- 22. mailto:m_pupil@yahoo.com.cn
1774
- 23. http://open.comsultia.com/docbook2odf/
1775
- 24. http://www1.chapman.edu/~jipsen/mathml/asciimath.html
1776
- 25. http://www.methods.co.nz/asciidoc/asciimath.html
1777
- 26. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X50
1778
- 27. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X33
1779
- 28. mailto:francis@daoine.org
1780
- 29. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X39
1781
- 30. file://localhost/tmp/lynxXXXXydLULz/source-highlight-filter.html
1782
- 31. mailto:trolocsis@gmail.com
1783
- 32. mailto:srackham@gmail.com
1784
- 33. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X36
1785
- 34. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X33
1786
- 35. mailto:viktor@rbg.informatik.tu-darmstadt.de
1787
- 36. file://localhost/tmp/lynxXXXXydLULz/userguide.html#X23
1788
- 37. mailto:david@dgreaves.com
1789
- 38. mailto:stone@debian.org
1790
- 39. mailto:stone@debian.org
1791
- 40. mailto:srackham@gmail.com
1792
- 41. http://jimmac.musichall.cz/ikony.php3
1793
- 42. mailto:srackham@gmail.com
1794
- 43. http://www.methods.co.nz/asciidoc/examples/website/
1795
- 44. http://www.methods.co.nz/asciidoc/
1796
- 45. https://sourceforge.net/projects/asciidoc/
2823
+ 1. http://flask.pocoo.org/docs/
2824
+ 2. http://groups.google.com/group/asciidoc/browse_thread/thread/9da9d48a6461ff14
2825
+ 3. http://groups.google.com/group/asciidoc/browse_thread/thread/5c792cbb395b753b
2826
+ 4. http://groups.google.com/group/asciidoc/browse_thread/thread/e2100b7cb29283ce
2827
+ 5. http://groups.google.com/group/asciidoc/browse_thread/thread/c5e30ee5555877f5
2828
+ 6. http://groups.google.com/group/asciidoc/browse_thread/thread/baf3218551d05a05
2829
+ 7. http://groups.google.com/group/asciidoc/browse_thread/thread/5a7fe64fbfd65ad
2830
+ 8. http://groups.google.com/group/asciidoc/browse_thread/thread/5620ba634fdb030a
2831
+ 9. http://groups.google.com/group/asciidoc/browse_thread/thread/f969b9ce987d7f5d
2832
+ 10. http://groups.google.com/group/asciidoc/browse_thread/thread/cd0f47495fd04181
2833
+ 11. http://code.google.com/p/asciidoc/issues/detail?id=6&q=label%3APriority-Medium
2834
+ 12. http://sourceforge.net/tracker/?func=detail&atid=373747&aid=2854075&group_id=21935
2835
+ 13. http://groups.google.com/group/asciidoc/browse_thread/thread/b24cc3362f35b801
2836
+ 14. http://www.methods.co.nz/asciidoc/userguide.html#X96
2837
+ 15. http://groups.google.com/group/asciidoc/browse_thread/thread/77f28b0dfe60d262
2838
+ 16. http://www.methods.co.nz/asciidoc/manpage.html
2839
+ 17. http://groups.google.com/group/asciidoc/browse_thread/thread/40c64cd33ee1905c
2840
+ 18. http://groups.google.com/group/asciidoc/browse_thread/thread/e15282f072413940
2841
+ 19. http://groups.google.com/group/asciidoc/browse_thread/thread/5ac8e8ea895147e9
2842
+ 20. http://groups.google.com/group/asciidoc/browse_thread/thread/e15282f072413940
2843
+ 21. http://groups.google.com/group/asciidoc/browse_thread/thread/e15282f072413940
2844
+ 22. http://groups.google.com/group/asciidoc/browse_thread/thread/b11066a828ab45b9
2845
+ 23. http://groups.google.com/group/asciidoc/browse_thread/thread/a1dd0562dee8b939
2846
+ 24. http://groups.google.com/group/asciidoc/browse_thread/thread/f44615dca0b834e9
2847
+ 25. http://groups.google.com/group/asciidoc/browse_thread/thread/1b3f88f1f8118ab3
2848
+ 26. http://groups.google.com/group/asciidoc/browse_thread/thread/c21c2902c29bae64
2849
+ 27. http://groups.google.com/group/asciidoc/browse_thread/thread/f510ea82a88aaee8
2850
+ 28. http://groups.google.com/group/asciidoc/browse_thread/thread/42b63ce90c2563b8
2851
+ 29. http://groups.google.com/group/asciidoc/browse_thread/thread/42b63ce90c2563b8
2852
+ 30. http://bugs.python.org/issue3932
2853
+ 31. http://groups.google.com/group/asciidoc/browse_thread/thread/dedc961b23e9ac56
2854
+ 32. https://phillordbio-asciidoc-fixes.googlecode.com/hg/
2855
+ 33. http://groups.google.com/group/asciidoc/browse_thread/thread/c14a4c3b1e4f6dc5
2856
+ 34. http://groups.google.com/group/asciidoc/browse_thread/thread/c948697943432e24
2857
+ 35. http://groups.google.com/group/asciidoc/browse_thread/thread/1c415fc4540ce5e5
2858
+ 36. http://groups.google.com/group/asciidoc/browse_thread/thread/8712a95e95a292a7
2859
+ 37. http://groups.google.com/group/asciidoc/browse_thread/thread/c4427a3902d130a8
2860
+ 38. http://groups.google.com/group/asciidoc/browse_thread/thread/59a610068e4acb58
2861
+ 39. http://groups.google.com/group/asciidoc/browse_thread/thread/b22603bfb879418c
2862
+ 40. http://groups.google.com/group/asciidoc/browse_thread/thread/1c02d27d49221aa2
2863
+ 41. http://groups.google.com/group/asciidoc/browse_thread/thread/5f3e825c74ed30c
2864
+ 42. http://pygments.org/
2865
+ 43. http://groups.google.com/group/asciidoc/browse_thread/thread/d8d042f5a3021369/8934ebbb8cb7144b
2866
+ 44. http://groups.google.com/group/asciidoc/browse_frm/thread/319e5cd94493e330/3fcb83fab067af42
2867
+ 45. http://groups.google.com/group/asciidoc/browse_frm/thread/fe9b33d8f5f1e0af
2868
+ 46. http://groups.google.com/group/asciidoc/browse_frm/thread/8eda3ea812968854
2869
+ 47. http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
2870
+ 48. http://groups.google.com/group/asciidoc/browse_frm/thread/66e7b59d12cd2f91
2871
+ 49. http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
2872
+ 50. http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
2873
+ 51. http://groups.google.com/group/asciidoc/browse_frm/thread/219c86ae25b79a21
2874
+ 52. http://groups.google.com/group/asciidoc/browse_frm/thread/af652507caf6cec9
2875
+ 53. http://groups.google.com/group/asciidoc/browse_frm/thread/3f96900f7fbf5620
2876
+ 54. http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
2877
+ 55. http://groups.google.com/group/asciidoc/browse_frm/thread/2ff802547b6a75ea
2878
+ 56. http://groups.google.com/group/asciidoc/browse_thread/thread/14e8fcb289a135b
2879
+ 57. http://groups.google.com/group/asciidoc/browse_thread/thread/faa36e9e5c7da019/d24cab3fe363e58d
2880
+ 58. http://groups.google.com/group/asciidoc/browse_frm/thread/ac4b9bfa2116db28
2881
+ 59. http://groups.google.com/group/asciidoc/browse_frm/thread/c17abd175778f5ea
2882
+ 60. http://groups.google.com/group/asciidoc/browse_frm/thread/c17abd175778f5ea
2883
+ 61. http://groups.google.com/group/asciidoc/browse_frm/thread/1b6b66adb24e710
2884
+ 62. http://groups.google.com/group/asciidoc/browse_frm/thread/a23fea28394c8ca9
2885
+ 63. http://groups.google.com/group/asciidoc/browse_frm/thread/50b28f6941de111a
2886
+ 64. http://groups.google.com/group/asciidoc/browse_frm/thread/dfe5204d5b2c9685
2887
+ 65. http://groups.google.com/group/asciidoc/browse_frm/thread/f0b6f9989f828c3
2888
+ 66. http://groups.google.com/group/asciidoc/browse_frm/thread/14aefc1cb6bd85f5
2889
+ 67. http://groups.google.com/group/asciidoc/browse_frm/thread/cb8b7694bbc82a6
2890
+ 68. http://groups.google.com/group/asciidoc/browse_frm/thread/cb8b7694bbc82a6
2891
+ 69. http://groups.google.com/group/asciidoc/browse_frm/thread/4b0f364b477ec165
2892
+ 70. http://groups.google.com/group/asciidoc/browse_frm/thread/e5e61823ff4203cd
2893
+ 71. http://groups.google.com/group/asciidoc/browse_frm/thread/2aa3e5711d243045
2894
+ 72. http://groups.google.com/group/asciidoc/browse_frm/thread/5215c99dcc865e7d
2895
+ 73. http://hg.sharesource.org/asciidoc/diff/55a5999bfd04/xhtml11.conf
2896
+ 74. http://groups.google.com/group/asciidoc/browse_frm/thread/b276a927fdc87995
2897
+ 75. http://groups.google.com/group/asciidoc/browse_frm/thread/f4df7c9eec01a9bd
2898
+ 76. http://groups.google.com/group/asciidoc/browse_frm/thread/f4df7c9eec01a9bd
2899
+ 77. http://groups.google.com/group/asciidoc/browse_frm/thread/d29924043e21cb6a
2900
+ 78. http://groups.google.com/group/asciidoc/browse_frm/thread/74d9a542b79ccd50
2901
+ 79. http://groups.google.com/group/asciidoc/browse_frm/thread/ea3a8ea399ae5d2a
2902
+ 80. http://groups.google.com/group/asciidoc/browse_frm/thread/69b3183fdab7c6a5
2903
+ 81. http://groups.google.com/group/asciidoc/browse_frm/thread/a254cf949ea7c6c5
2904
+ 82. http://groups.google.com/group/asciidoc/browse_frm/thread/e1dcb7ee0efc17b5
2905
+ 83. http://groups.google.com/group/asciidoc/browse_frm/thread/69b3183fdab7c6a5
2906
+ 84. http://groups.google.com/group/asciidoc/browse_frm/thread/1badad21ff9447ac
2907
+ 85. http://groups.google.com/group/asciidoc/browse_frm/thread/a42db6bc54c2c537
2908
+ 86. http://groups.google.com/group/asciidoc/browse_frm/thread/b9c63be67dd1d11c
2909
+ 87. http://groups.google.com/group/asciidoc/browse_frm/thread/1269dc2feb1a482c
2910
+ 88. http://groups.google.com/group/asciidoc/browse_frm/thread/36ff073c79cbc20a
2911
+ 89. http://www.methods.co.nz/asciidoc/userguide.html#X89
2912
+ 90. http://groups.google.com/group/asciidoc/browse_thread/thread/62278a054188a038
2913
+ 91. http://groups.google.com/group/asciidoc/browse_thread/thread/4bdcdfb0af773e2
2914
+ 92. http://groups.google.com/group/asciidoc/browse_thread/thread/c93bb4db025225d8
2915
+ 93. http://groups.google.com/group/asciidoc/browse_thread/thread/1d796a9c9ddb2855
2916
+ 94. http://groups.google.com/group/asciidoc/browse_thread/thread/6d8c716748b109e3
2917
+ 95. http://groups.google.com/group/asciidoc/browse_thread/thread/fd27add515597c06
2918
+ 96. http://www.methods.co.nz/asciidoc/testasciidoc.html
2919
+ 97. http://www.methods.co.nz/asciidoc/asciidocapi.html
2920
+ 98. file://localhost/tmp/lynxXXXX9DvHNC/L3892-3814TMP.html#X2
2921
+ 99. http://www.methods.co.nz/asciidoc/INSTALL.html
2922
+ 100. http://www.methods.co.nz/asciidoc/newtables.html
2923
+ 101. http://www.methods.co.nz/asciidoc/newlists.html
2924
+ 102. http://www.methods.co.nz/asciidoc/userguide.html#X77
2925
+ 103. http://www.methods.co.nz/asciidoc/userguide.html#X76
2926
+ 104. http://www.methods.co.nz/asciidoc/latexmath.pdf
2927
+ 105. http://www.methods.co.nz/asciidoc/asciimathml.html
2928
+ 106. http://www.methods.co.nz/asciidoc/latexmathml.html
2929
+ 107. http://www.methods.co.nz/asciidoc/source-highlight-filter.html
2930
+ 108. https://sharesource.org/hg/asciidoc/
2931
+ 109. http://en.wikipedia.org/wiki/Data:_URI_scheme
2932
+ 110. http://www.methods.co.nz/asciidoc/faq.html
2933
+ 111. http://www.maths.nottingham.ac.uk/personal/drw/lm.html
2934
+ 112. http://www.methods.co.nz/asciidoc/asciimathml.html
2935
+ 113. http://www.methods.co.nz/asciidoc/index.html
2936
+ 114. http://tpl.sourceforge.net/userguide.html
2937
+ 115. http://www.methods.co.nz/asciidoc/music-filter.html
2938
+ 116. http://lilypond.org/
2939
+ 117. http://abcnotation.org.uk/
2940
+ 118. mailto:srackham@gmail.com
2941
+ 119. mailto:jlm@ofb.net
2942
+ 120. mailto:m_pupil@yahoo.com.cn
2943
+ 121. http://open.comsultia.com/docbook2odf/
2944
+ 122. http://www1.chapman.edu/~jipsen/mathml/asciimath.html
2945
+ 123. http://www.methods.co.nz/asciidoc/asciimath.html
2946
+ 124. file://localhost/tmp/lynxXXXX9DvHNC/userguide.html#X33
2947
+ 125. mailto:francis@daoine.org
2948
+ 126. file://localhost/tmp/lynxXXXX9DvHNC/userguide.html#X39
2949
+ 127. file://localhost/tmp/lynxXXXX9DvHNC/source-highlight-filter.html
2950
+ 128. mailto:trolocsis@gmail.com
2951
+ 129. mailto:srackham@gmail.com
2952
+ 130. file://localhost/tmp/lynxXXXX9DvHNC/userguide.html#X36
2953
+ 131. file://localhost/tmp/lynxXXXX9DvHNC/userguide.html#X33
2954
+ 132. mailto:viktor@rbg.informatik.tu-darmstadt.de
2955
+ 133. file://localhost/tmp/lynxXXXX9DvHNC/userguide.html#X23
2956
+ 134. mailto:david@dgreaves.com
2957
+ 135. mailto:stone@debian.org
2958
+ 136. mailto:stone@debian.org
2959
+ 137. mailto:srackham@gmail.com
2960
+ 138. http://jimmac.musichall.cz/ikony.php3
2961
+ 139. mailto:srackham@gmail.com
2962
+ 140. http://www.methods.co.nz/asciidoc/
2963
+ 141. https://sourceforge.net/projects/asciidoc/