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

Merge pull request #183 from chickenandpork/master

Resolves the error of unbalanced tags opened/closed in docbook output
parents 3d05cb6d d7b0858e
Loading
Loading
Loading
Loading
+10 −1
Original line number Original line Diff line number Diff line
@@ -1005,7 +1005,16 @@ void DocbookDocVisitor::visitPre(DocParamSect *s)
        break;
        break;
      }
      }
    case DocParamSect::Exception:
    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:
    case DocParamSect::TemplateParam:
      m_t << "templateparam"; break;
      m_t << "templateparam"; break;
    default:
    default: