在 rails 中生成 book.epub 并在 epubcheck 工具中验证 book.epub。我遇到了很多错误,修复了所有错误,除了以下错误:
错误:/book.epub/section.xhtml(14,85):此处不允许属性“数据对齐”;预期属性“dir”、“id”、“lang”、“style”、“title”或“xml:lang”
错误:/book.epub/section.xhtml(15,8):此处不允许元素“br” ; 期望元素结束标签或元素“address”、“blockquote”、“del”、“div”、“dl”、“h1”、“h2”、“h3”、“h4”、“h5”、“h6” "、"hr"、"ins"、"noscript"、"ns:svg"、"ol"、"p"、"pre"、"script"、"table"
如果我在 sigil 编辑器中打开并保存文件,则与 div 或 br 相关的错误将得到解决。但我想在不在任何编辑器中打开它的情况下解决它。
下面的代码是xhtml的一部分:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>File 1: H1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="stylesheet.css" type="text/css" rel="stylesheet"/>
<link href="page_styles.css" type="text/css" rel="stylesheet"/>
</head>
<body class="publitory">
<h1 id="File_1_5008715178345834">H1</h1>
<h2 id="File_1_1188526892007714">H2</h2>
<h3 id="File_1_4556759710045751">H3</h3>
<h4 id="File_1_6171405939859093">H4</h4>
<h2 id="File_1_410970362765287">H2</h2>
<p>
<div style="margin: 0px auto; width: 35%;" data-align="Middle" class="image_content">
<img src="bookf779ea3e8163a8345602bc3e0c2ce04d9bffb24d.jpeg" width="100%" alt="Book Content Book Content Book Content Book Content Book Content Book Content Book Content Book Content "/>
<div class="caption" style="clear:both;">Book Content Book Content Book Content Book Content Book Content Book Content Book Content Book Content</div>
</div>
</p>
<p>
<br/>
</p>
<h3 id="File_1_3792181513523657">H3</h3>
</body>
</html>
帮我解决这个问题。提前致谢。