Skip to content

Commit 1bc230f

Browse files
committed
Partial fix issue wcember#24 - invalid epub hr tag
Fix EPUBCheck v5.1.0 FATAL(RSC-016) had hr tag FATAL(RSC-016): ......epub/OEBPS/toc.html(15,5): Fatal Error while parsing file: The element type "hr" must be terminated by the matching end-tag "</hr>".
1 parent cc558cc commit 1bc230f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypub/epub_templates/toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88
<h2>Table of Contents</h2>
9-
<hr>
9+
<hr />
1010
<div id="chapters">
1111
{% for chapter in chapters %}
1212
<p><a href= "{{ chapter.link }}">{{ chapter.title }}</a></p>

0 commit comments

Comments
 (0)