Skip to content

Commit f13a164

Browse files
committed
Improved handling of nested tables
In case of a nested table an extra empty line was shown in the latex output, this has been removed. (When the user wants an extra line he bac always use e.g. a `\n`)
1 parent 445ff9a commit f13a164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/latexdocvisitor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ void LatexDocVisitor::writeStartTableCommand(const DocNodeVariant *n,size_t cols
12561256
{
12571257
if (isTableNested(n))
12581258
{
1259-
m_t << "\n\\begin{DoxyTableNested}{" << cols << "}";
1259+
m_t << "\\begin{DoxyTableNested}{" << cols << "}";
12601260
}
12611261
else
12621262
{

0 commit comments

Comments
 (0)