Quote:
Originally Posted by Zai24
Using Add Semantics I selected 'Chapter' for one of my chapters and ran the plugin, which had no effect on the code of that chapter.
|
AFAIK, selecting Add Semantics..., will update nav.xhtml and/or content.opf.
You'll need to manually add
epub:type attributes in Code View mode to tags in .xhtml files. For example, if you add the following code to an epub3 book:
Code:
<section epub:type="chapter">
<p>This is a chapter</p>
</section>
and run the plugin it'll add a role="doc-chapter" attribute:
Code:
<section epub:type="chapter" role="doc-chapter">
<p>This is a chapter</p>
</section>