]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetBibitem.cpp
Improved character count statistics for letter based insets (e.g. the LyX logo).
[features.git] / src / insets / InsetBibitem.cpp
index a3cdeac1fc49118e8e27944f134a5154b673fa79..b16687e7d70a2769af07323d81c88536cbbfa935 100644 (file)
@@ -343,6 +343,12 @@ void InsetBibitem::updateBuffer(ParIterator const & it, UpdateType utype, bool c
 }
 
 
+void InsetBibitem::docbook(XMLStream &, OutputParams const &) const
+{
+       // Nothing to do: everything is implemented in makeParagraphBibliography.
+}
+
+
 docstring InsetBibitem::xhtml(XMLStream & xs, OutputParams const &) const
 {
        // FIXME XHTML
@@ -352,7 +358,7 @@ docstring InsetBibitem::xhtml(XMLStream & xs, OutputParams const &) const
        // handle jumping to ids. If we don't do that, though, we can just put the
        // id into the span tag.
        string const attrs =
-               "id='LyXCite-" + to_utf8(xml::cleanAttr(getParam("key"))) + "'";
+                       "id='LyXCite-" + to_utf8(xml::cleanAttr(getParam("key"))) + "'";
        xs << xml::CompTag("a", attrs);
        xs << xml::StartTag("span", "class='bibitemlabel'");
        xs << bibLabel();