]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Partially revert r34995, which broke math output. Not sure why yet....
[lyx.git] / src / output_xhtml.h
index 91b4e685223d31add1b498317444f9275c2df446..874cc9903e68ea181dcf301dc31a017fe0d6f4ab 100644 (file)
@@ -29,10 +29,10 @@ class Text;
 
 namespace html {
 /// Attributes will be escaped automatically and so should NOT
-/// be escaped before passing to the constructor.
+/// be escaped before being passed to the constructor.
 struct StartTag {
        ///
-       explicit StartTag(std::string const & tag) : tag_(tag) {}
+       explicit StartTag(std::string const & tag) : tag_(tag), keepempty_(false) {}
        ///
        explicit StartTag(std::string const & tag, std::string const & attr, 
                bool keepempty = false) 
@@ -67,7 +67,7 @@ struct EndTag {
 // need to re-work a bit of code....
 /// Tags like <img />
 /// Attributes will be escaped automatically and so should NOT
-/// be escaped before passing to the constructor.
+/// be escaped before being passed to the constructor.
 struct CompTag {
        ///
        explicit CompTag(std::string const & tag)
@@ -83,7 +83,7 @@ struct CompTag {
        std::string attr_;
 };
 
-} // namespace HTML
+} // namespace html
 
 class XHTMLStream {
 public:
@@ -164,13 +164,7 @@ std::string htmlize(std::string const & str);
 /// 
 std::string cleanAttr(std::string const & str);
 
-// to be removed
-/// \return true if tag was opened, false if not 
-bool openTag(odocstream & os, std::string const & tag, 
-                                                std::string const & attr);
-/// \return true if tag was opened, false if not 
-bool closeTag(odocstream & os, std::string const & tag);
-}
+} // namespace html
 } // namespace lyx
 
 #endif