Use something simpler for the TOC links in XHTML. Some browsers don't

like the ⇘ entity.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33792 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-18 18:12:30 +00:00
parent bfe352d39d
commit 3efcfa3cf1
2 changed files with 2 additions and 2 deletions

View File

@ -235,7 +235,7 @@ docstring InsetFloatList::xhtml(XHTMLStream &, OutputParams const &) const {
<< html::StartTag("a", parattr)
// FIXME XHTML
// There ought to be a simple way to customize this.
<< XHTMLStream::NextRaw() << "&seArr;"
<< XHTMLStream::NextRaw() << "&gt;"
<< html::EndTag("a");
xs << html::EndTag("div");
}

View File

@ -161,7 +161,7 @@ docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
// FIXME XHTML
// There ought to be a simple way to customize this.
// Maybe if we had an InsetLayout for TOC...
xs << XHTMLStream::NextRaw() << "&seArr;";
xs << XHTMLStream::NextRaw() << "&gt;";
xs << html::EndTag("a");
}
for (int i = lastdepth; i > 0; --i)