]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Buffer: Rename function names:
[lyx.git] / src / output_xhtml.h
index 874cc9903e68ea181dcf301dc31a017fe0d6f4ab..986070ddd6745155144f5afcb119ff60ef0547f9 100644 (file)
@@ -12,6 +12,7 @@
 #ifndef OUTPUT_XHTML_H
 #define OUTPUT_XHTML_H
 
+#include "LayoutEnums.h"
 #include "support/docstream.h"
 #include "support/strfwd.h"
 
@@ -109,6 +110,8 @@ public:
        ///
        XHTMLStream & operator<<(int);
        ///
+       XHTMLStream & operator<<(char);
+       ///
        XHTMLStream & operator<<(html::StartTag const &);
        ///
        XHTMLStream & operator<<(html::EndTag const &);
@@ -149,6 +152,10 @@ void xhtmlParagraphs(Text const & text,
                       XHTMLStream & xs,
                       OutputParams const & runparams);
 
+/// \return a string appropriate for setting alignment in CSS
+/// Does NOT return "justify" for "block"
+std::string alignmentToCSS(LyXAlignment align);
+
 namespace html {
 ///
 docstring escapeChar(char_type c);