Hi All,

such snippet of asciidoc code:

[caption="image caption"]
image::img/image.png[align="center", title="image title"]

when converted to html using
asciidoc -a data-uri -o file.html file.txt

<div class="imageblock" style="text-align:center;">
<div class="content">
<img alt="img/image.png" src="data:image/png;base64,
BASE64_CONTENT_HERE" />
</div>
<div class="title">image captionimage title</div>
</div>

What is surprising me is the fact that both title and caption gets
into the same div.

Would it be possible to have something like
<div class="title">image title</div>
<div class="caption">image caption</div>
instead?

--
Regards,
Tomek Kaczanowski

-- 
You received this message because you are subscribed to the Google Groups 
"asciidoc" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/asciidoc?hl=en.

Reply via email to