diff options
author | Allan Clark <allanc@chickenandporn.com> | 2014-06-17 03:58:16 (GMT) |
---|---|---|
committer | Allan Clark <allanc@chickenandporn.com> | 2014-06-17 03:58:16 (GMT) |
commit | d7b0858e079419bb7ea862e16946218a9352d5b5 (patch) | |
tree | 2cea50df388217122103a06c27d6a9cc67ba5dd1 /src/docbookvisitor.cpp | |
parent | 21178ab40160abf011fa084a10892b5b7821e44c (diff) | |
download | Doxygen-d7b0858e079419bb7ea862e16946218a9352d5b5.zip Doxygen-d7b0858e079419bb7ea862e16946218a9352d5b5.tar.gz Doxygen-d7b0858e079419bb7ea862e16946218a9352d5b5.tar.bz2 |
resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody
Diffstat (limited to 'src/docbookvisitor.cpp')
-rw-r--r-- | src/docbookvisitor.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp index 6867dce..f47994f 100644 --- a/src/docbookvisitor.cpp +++ b/src/docbookvisitor.cpp @@ -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: |