Skip to content

Commit

Permalink
Bug 741100 - Latex to PDF hangs when using Markdown tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Dec 23, 2014
1 parent 95aee34 commit 089771b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latexdocvisitor.cpp
Expand Up @@ -895,7 +895,7 @@ static const char *getTableName(const DocNode *n)
bool isNested=FALSE;
while (n && !isNested)
{
isNested = n->kind()==DocNode::Kind_HtmlTable;
isNested = n->kind()==DocNode::Kind_HtmlTable || n->kind()==DocNode::Kind_ParamSect;
n = n->parent();
}
return isNested ? "TabularNC" : "TabularC";
Expand Down

0 comments on commit 089771b

Please sign in to comment.