mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 11:52:25 +00:00
Fix bibitem bug for XHTML.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32293 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5e440ef668
commit
ca6f5978c3
@ -277,7 +277,7 @@ docstring InsetBibitem::xhtml(XHTMLStream & xs, OutputParams const &) const
|
||||
// need to use "name" anyway, eventually, because some browsers do not
|
||||
// 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='" + to_utf8(getParam("key")) + "'";
|
||||
string const attrs = "id='" + to_utf8(bibLabel()) + "'";
|
||||
xs << CompTag("a", attrs);
|
||||
xs << StartTag("span", "class='biblabel'");
|
||||
xs << bibLabel();
|
||||
|
Loading…
Reference in New Issue
Block a user