]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
* GuiDocument.cpp:
[lyx.git] / src / output_xhtml.h
index e58e4a8db49f2f4720a921d85da0ed5c2a47d755..6ebb018f5993e8b485c198d3bdcbf7339e9625a4 100644 (file)
@@ -27,7 +27,15 @@ void xhtmlParagraphs(ParagraphList const & subset,
                       OutputParams const & runparams);
 
 namespace html {
+       ///
        docstring escapeChar(char_type c);
+       /// converts a string to a form safe for links, etc
+       docstring htmlize(docstring const & str);
+       /// \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 lyx