sigil "condensation" of nested <div>'s
I imported a large valid ebook xhtml file to Sigil (version 0.5.3), saved to epub, and found that all nested <div>'s had been "condensed"; e.g.,
xhtml file content...
<div class="outer">
<div class="middle">
<div class="inner">
<img src="example.jpg" alt="example">
</div>
</div>
</div>
appeared in the epub as:
<div class="outer middle inner">
<img src="example.jpg" alt="example">
</div>
I googled unsuccessfully for explanation, so tried the notation on good example code and found it didn't work.
Is there an explanation or workaround for this?
|