Remove unnecessary LoI section element

Per https://standardebooks.org/manual/1.8.0/7-high-level-structural-patterns#7.9
the <nav> should be directly nested under the <body>.
This commit is contained in:
Andrew Paseltiner 2024-06-26 17:47:09 -04:00
parent dcbf470c00
commit 405c879151

View file

@ -6,8 +6,7 @@
<link href="../css/local.css" rel="stylesheet" type="text/css"/> <link href="../css/local.css" rel="stylesheet" type="text/css"/>
</head> </head>
<body epub:type="backmatter"> <body epub:type="backmatter">
<section id="loi" epub:type="loi"> <nav id="loi" epub:type="loi">
<nav epub:type="loi">
<h2 epub:type="title">List of Illustrations</h2> <h2 epub:type="title">List of Illustrations</h2>
<ol> <ol>
<li> <li>
@ -87,6 +86,5 @@
</li> </li>
</ol> </ol>
</nav> </nav>
</section>
</body> </body>
</html> </html>