From 03e0c16e87b127b221b96dfe52b224f874b2e97a Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 11 Jun 2009 22:31:27 +0000 Subject: [PATCH] Fix bibliography output. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30054 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index d008bc0eab..958844b2b5 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -224,11 +224,12 @@ ParagraphList::const_iterator makeBibliography(Buffer const & buf, ParagraphList::const_iterator const & pbegin, ParagraphList::const_iterator const & pend) { - os << "
\n" - << "

" + os << "

" << pbegin->layout().labelstring() - << "

\n"; - makeParagraphs(buf, os, runparams, paragraphs, pbegin, pend); + << "\n" + << "
\n"; + makeParagraphs(buf, os, runparams, paragraphs, pbegin, pend); + os << "
"; return pend; } -- 2.39.2