Skip to content

Commit

Permalink
resolves the error of unbalanced tags opened/closed in docbook output…
Browse files Browse the repository at this point in the history
…: parser error : Opening and ending tag mismatch: para line 358 and tbody
  • Loading branch information
chickenandpork committed Jun 17, 2014
1 parent 21178ab commit d7b0858
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/docbookvisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d7b0858

Please sign in to comment.