Commit d7b0858e authored by Allan Clark's avatar Allan Clark

resolves the error of unbalanced tags opened/closed in docbook output: parser...

resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody
parent 21178ab4
......@@ -1005,7 +1005,16 @@ void DocbookDocVisitor::visitPre(DocParamSect *s)
break;
}
case DocParamSect::Exception:
m_t << "exception"; break;
{
m_t << endl;
m_t << " <formalpara>" << endl;
m_t << " <title/>" << endl;
m_t << " <table frame=\"all\">" << endl;
m_t << " <title>Exceptions</title>" << endl;
m_t << " <tgroup cols=\"2\" align=\"left\" colsep=\"1\" rowsep=\"1\">" << endl;
m_t << " <tbody>" << endl;
break;
}
case DocParamSect::TemplateParam:
m_t << "templateparam"; break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment