mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
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:
parent
bfe352d39d
commit
3efcfa3cf1
@ -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() << "⇘"
|
||||
<< XHTMLStream::NextRaw() << ">"
|
||||
<< html::EndTag("a");
|
||||
xs << html::EndTag("div");
|
||||
}
|
||||
|
@ -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() << "⇘";
|
||||
xs << XHTMLStream::NextRaw() << ">";
|
||||
xs << html::EndTag("a");
|
||||
}
|
||||
for (int i = lastdepth; i > 0; --i)
|
||||
|
Loading…
Reference in New Issue
Block a user