Commit 6617df2f authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #183 from chickenandpork/master

Resolves the error of unbalanced tags opened/closed in docbook output
parents 3d05cb6d d7b0858e
......@@ -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