]> git.lyx.org Git - features.git/commitdiff
Use something simpler for the TOC links in XHTML. Some browsers don't
authorRichard Heck <rgheck@comcast.net>
Thu, 18 Mar 2010 18:12:30 +0000 (18:12 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 18 Mar 2010 18:12:30 +0000 (18:12 +0000)
like the &seArr; entity.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33792 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetFloatList.cpp
src/insets/InsetTOC.cpp

index 432d2c0f5e6142fec74e8804981debc31169d6ef..52e84e27dc8b9ac0f6b3a306fc9437336d1200bf 100644 (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");
        }
index c1ead0f1142587c5799a7aedd7cc8f1fb5e235ca..fae28ea21f371d7cff4b67bf61aacfbea14c1e65 100644 (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)