意外的结束标记(字体)HTML

Unexpected end tag (font) HTML

我是 运行 一个 R 代码,连接了几个 HTML 文件。作为 R Returns 一条错误消息,我打开了消息结果的源文件:

在 HTML 文件中,有以下错误信息:

“结束标记(字体)违反了采用机构算法的第 1 步第 1 段。意外的结束标记(字体)。已忽略。

由于我对 HTML 完全陌生,如果有人告诉我消息的来源,我将不胜感激。这是代码行:

<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> with parameters of type <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A></FONT></TH>

提前致谢。

您有一个 </FONT> 标签...但您没有初学者标签 <FONT>

<TH ALIGN="left" COLSPAN="2">
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
  </FONT>
</TH>

..so 或者你添加开始

<TH ALIGN="left" COLSPAN="2">
  <FONT
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
  </FONT>
</TH>

或者您应该删除

<TH ALIGN="left" COLSPAN="2">
    Methods in 
    <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> 
    with parameters of type 
    <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
</TH>