]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Add Sam Crawley to credits.
[lyx.git] / src / output_xhtml.h
index e58e4a8db49f2f4720a921d85da0ed5c2a47d755..e9ca2716b84a0c2ff60b3264c41683a82091c21f 100644 (file)
 #ifndef OUTPUT_XHTML_H
 #define OUTPUT_XHTML_H
 
+#include "LayoutEnums.h"
+
 #include "support/strfwd.h"
+#include "xml.h"
+
 
 namespace lyx {
 
+docstring fontToHtmlTag(xml::FontTypes type);
+docstring fontToHtmlAttribute(xml::FontTypes type);
+
 class Buffer;
 class OutputParams;
-class ParagraphList;
+class Text;
 
 ///
-void xhtmlParagraphs(ParagraphList const & subset,
+xml::FontTag xhtmlStartFontTag(xml::FontTypes type);
+///
+xml::EndFontTag xhtmlEndFontTag(xml::FontTypes type);
+
+///
+void xhtmlParagraphs(Text const & text,
                       Buffer const & buf,
-                      odocstream & os,
+                      XMLStream & xs,
                       OutputParams const & runparams);
 
-namespace html {
-       docstring escapeChar(char_type c);
-}
+/// \return a string appropriate for setting alignment in CSS
+/// Does NOT return "justify" for "block"
+std::string alignmentToCSS(LyXAlignment align);
+
 } // namespace lyx
 
 #endif