From: Richard Heck Date: Sat, 27 Mar 2010 13:54:50 +0000 (+0000) Subject: Use rich text in XHTML output, too. X-Git-Tag: 2.0.0~3694 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9a982853083f7d76d4112ef46629683d4ce4ef64;p=features.git Use rich text in XHTML output, too. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33881 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetBibtex.cpp b/src/insets/InsetBibtex.cpp index 97abcb8d68..25b1d398bf 100644 --- a/src/insets/InsetBibtex.cpp +++ b/src/insets/InsetBibtex.cpp @@ -960,7 +960,7 @@ docstring InsetBibtex::xhtml(XHTMLStream & xs, OutputParams const &) const // which will give us all the cross-referenced info. But for every // entry, so there's a lot of repitition. This should be fixed. xs << html::StartTag("span", "class='bibtexinfo'") - << bibinfo.getInfo(entry.key()) + << bibinfo.getInfo(entry.key(), true) << html::EndTag("span") << html::EndTag("div"); xs.cr();