Fix bug #8604: Forgot not to escape the caption string in listings.

This commit is contained in:
Richard Heck 2013-03-23 10:05:56 -04:00
parent 6eb0b47a8a
commit 7dac3a2715

View File

@ -277,6 +277,7 @@ docstring InsetListings::xhtml(XHTMLStream & os, OutputParams const & rp) const
docstring caption = getCaptionHTML(rp);
if (!caption.empty())
out << html::StartTag("div", "class='float-caption'")
<< XHTMLStream::ESCAPE_NONE
<< caption << html::EndTag("div");
}