You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For this particular snippet below, peregrin is doing some weird things with componentization when converting to EPUB. It adds to the first component (i.e., after the cover, index.html) parts for which it will also create a separate component, hence duplicating content once all components are put together.
<hgroup class="title-page">
<h1 class="title-title">My ebook</h1>
<h2 class="title-author">John Doe</h2>
</hgroup>
<article class="dedication">
<h2>Dedication</h2>
<p>To someone I care for</p>
</article>
<article class="text">
<article>
<h3>First text chapter</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In accumsan massa non nulla lacinia eu feugiat diam imperdiet. Vestibulum non felis mauris. In auctor est nec quam eleifend luctus imperdiet ut massa. Duis et tellus non felis viverra euismod. Praesent gravida ornare arcu, non fringilla sem pharetra ac.</p>
</article>
<article>
<h3>Second text chapter</h3>
<p>Proin imperdiet mi tempor nisl ullamcorper rhoncus. Curabitur luctus posuere neque, ac consequat quam volutpat nec. Fusce at est sem. Vivamus ante diam, ullamcorper at scelerisque in, auctor at est. Proin diam tortor, sollicitudin vitae tempus sed, tincidunt vitae augue. Quisque id est turpis. Phasellus non magna metus, in bibendum magna.</p>
</article>
</article>
Peregrin will do it right if I delete the hgroup at the top or add an h2 inside the article class="text", which has none.
The text was updated successfully, but these errors were encountered:
For this particular snippet below, peregrin is doing some weird things with componentization when converting to EPUB. It adds to the first component (i.e., after the cover,
index.html
) parts for which it will also create a separate component, hence duplicating content once all components are put together.Peregrin will do it right if I delete the
hgroup
at the top or add anh2
inside thearticle class="text"
, which has none.The text was updated successfully, but these errors were encountered: