Skip to content

Commit

Permalink
Bug 726734 - alignment of blockquotes in pdf
Browse files Browse the repository at this point in the history
The quote instead of quotation does align multi level block quotes
  • Loading branch information
albert-github committed Mar 19, 2014
1 parent 683ef76 commit 9059295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/latexdocvisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1469,13 +1469,13 @@ void LatexDocVisitor::visitPost(DocText *)
void LatexDocVisitor::visitPre(DocHtmlBlockQuote *)
{
if (m_hide) return;
m_t << "\\begin{quotation}" << endl;
m_t << "\\begin{quote}" << endl;
}

void LatexDocVisitor::visitPost(DocHtmlBlockQuote *)
{
if (m_hide) return;
m_t << "\\end{quotation}" << endl;
m_t << "\\end{quote}" << endl;
}

void LatexDocVisitor::visitPre(DocVhdlFlow *)
Expand Down

0 comments on commit 9059295

Please sign in to comment.