]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHyperlink.cpp
Allow LyX format to be written to View>Source window.
[lyx.git] / src / insets / InsetHyperlink.cpp
index b6ccdd54fb88dc0a2fc8140e2cd36814d340a12c..442b839f0e5bb2a73b1e1fabee82c3bb1a4029b2 100644 (file)
@@ -225,7 +225,8 @@ int InsetHyperlink::docbook(odocstream & os, OutputParams const &) const
 
 docstring InsetHyperlink::xhtml(XHTMLStream & xs, OutputParams const &) const
 {
-       docstring const & target = getParam("target");
+       docstring const & target = 
+               html::htmlize(getParam("target"), XHTMLStream::ESCAPE_AND);
        docstring const & name   = getParam("name");
        xs << html::StartTag("a", to_utf8("href=\"" + target + "\""));
        xs << (name.empty() ? target : name);
@@ -270,9 +271,9 @@ void InsetHyperlink::validate(LaTeXFeatures & features) const
 }
 
 
-docstring InsetHyperlink::contextMenuName() const
+string InsetHyperlink::contextMenuName() const
 {
-       return from_ascii("context-hyperlink");
+       return "context-hyperlink";
 }