Commit 089771b5 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 741100 - Latex to PDF hangs when using Markdown tables

parent 95aee340
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment