Hi all,
Per
http://www.methods.co.nz/asciidoc/userguide.html#X86, I see that the Preamble is "an optional untitled section body between the document Header and the first Section title." And so it's not surprising that Asciidoc like
= document title
preamble
= section title
yields DocBook (with an untitled preface) like:
<title>document title</title>
<preface>
<title></title>
<simpara>preamble</simpara>
</preface>
<chapter>
<title>section title</title>
...
However, when rendering that DocBook as a PDF in `book` format with a TOC with asciidoctor-fopub, the result is a TOC with an untitled TOC entry (i.e., an entry of just dots):

Is that intended behavior? Is there perhaps an elegant way to avoid that symptom (short of editing the XSL)?
Many thanks!
David