Hi,
I found a bug-like phenomenon about epub generation (sorry when my
misunderstanding).
Block title (".title") for paragraph doesn't work when generating epub file. It
has only strong tag, not having title class.
A title for itemized list or ordered list is OK.
When generating HTML or docbook file, block title is created with title class
or tag normally.
minimal example
----
= a =
== b ==
.title for itmized list
* a
* b
* c
.title for ordered list
1. a
2. b
3. c
.title for paragraph
aaaaaa
----
-> HTML in epub file via a2x
----
<div class="itemizedlist"><p class="title"><a id="_b"><strong>title for itmized
list</strong></a></p><ul class="itemizedlist"><li class="listitem"><a id="_b">
a
</a></li><li class="listitem"><a id="_b">
b
</a></li><li class="listitem"><a id="_b">
c
</a></li></ul></div>
<div class="orderedlist"><p class="title"><a id="_b"><strong>title for ordered
list</strong></a></p><ol class="orderedlist"><li class="listitem"><a id="_b">
a
</a></li><li class="listitem"><a id="_b">
b
</a></li><li class="listitem"><a id="_b">
c
</a></li></ol></div>
<p><a id="_b"><strong>title for paragraph. </strong>aaaaaa</a></p>
----
The last line is a bug, I think.
-> HTML file generating via asciidoc
----
<div class="sectionbody">
<div class="ulist"><div class="title">title for itmized list</div><ul>
<li>
<p>
a
</p>
</li>
<li>
<p>
b
</p>
</li>
<li>
<p>
c
</p>
</li>
</ul></div>
<div class="olist arabic"><div class="title">title for ordered list</div><ol
class="arabic">
<li>
<p>
a
</p>
</li>
<li>
<p>
b
</p>
</li>
<li>
<p>
c
</p>
</li>
</ol></div>
<div class="paragraph"><div class="title">title for
paragraph</div><p>aaaaaa</p></div>
</div>
----
-> docbook
----
<itemizedlist><title>title for itmized list</title>
<listitem>
<simpara>
a
</simpara>
</listitem>
<listitem>
<simpara>
b
</simpara>
</listitem>
<listitem>
<simpara>
c
</simpara>
</listitem>
</itemizedlist>
<orderedlist numeration="arabic"><title>title for ordered list</title>
<listitem>
<simpara>
a
</simpara>
</listitem>
<listitem>
<simpara>
b
</simpara>
</listitem>
<listitem>
<simpara>
c
</simpara>
</listitem>
</orderedlist>
<formalpara><title>title for paragraph</title><para>aaaaaa</para></formalpara>
----
--
You received this message because you are subscribed to the Google Groups
"asciidoc" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/asciidoc.
For more options, visit https://groups.google.com/groups/opt_out.