Skip to content

Commit 7a08a9a

Browse files
authored
Merge pull request #11697 from albert-github/feature/bug_tblr_nested_table
Improved handling of nested tables
2 parents 03896a4 + f13a164 commit 7a08a9a

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
@@ -1274,7 +1274,7 @@ void LatexDocVisitor::writeStartTableCommand(const DocNodeVariant *n,size_t cols
12741274
{
12751275
if (isTableNested(n))
12761276
{
1277-
m_t << "\n\\begin{DoxyTableNested}{" << cols << "}";
1277+
m_t << "\\begin{DoxyTableNested}{" << cols << "}";
12781278
}
12791279
else
12801280
{

0 commit comments

Comments
 (0)