Question about reformatting <aside> elements (Sigil 0.9.13)
Hi,
I have an epub3 with this code:
<body>
<aside epub:type="footnote">
Text
here,
and here.
</aside>
</body>
After reformatting I expect:
<body>
<aside epub:type="footnote">
Text here, and here.
</aside>
</body>
But instead I see this:
<body>
<aside epub:type="footnote">
Text
here,
and here.
</aside>
</body>
Is Sigil's behavior correct for this example?
|