Commit 9059295f authored by albert-github's avatar albert-github

Bug 726734 - alignment of blockquotes in pdf

The quote instead of quotation does align multi level block quotes
parent 683ef76f
...@@ -1469,13 +1469,13 @@ void LatexDocVisitor::visitPost(DocText *) ...@@ -1469,13 +1469,13 @@ void LatexDocVisitor::visitPost(DocText *)
void LatexDocVisitor::visitPre(DocHtmlBlockQuote *) void LatexDocVisitor::visitPre(DocHtmlBlockQuote *)
{ {
if (m_hide) return; if (m_hide) return;
m_t << "\\begin{quotation}" << endl; m_t << "\\begin{quote}" << endl;
} }
void LatexDocVisitor::visitPost(DocHtmlBlockQuote *) void LatexDocVisitor::visitPost(DocHtmlBlockQuote *)
{ {
if (m_hide) return; if (m_hide) return;
m_t << "\\end{quotation}" << endl; m_t << "\\end{quote}" << endl;
} }
void LatexDocVisitor::visitPre(DocVhdlFlow *) void LatexDocVisitor::visitPre(DocVhdlFlow *)
......
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