From 089771b5f3c3c3984ae6f352125a001788a62d29 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 23 Dec 2014 19:36:47 +0100 Subject: [PATCH] Bug 741100 - Latex to PDF hangs when using Markdown tables --- src/latexdocvisitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp index 71e20c11cc9..4cba26178a8 100644 --- a/src/latexdocvisitor.cpp +++ b/src/latexdocvisitor.cpp @@ -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";