]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
HTML for comments and colors.
[lyx.git] / src / BufferParams.h
index bacda570b37b4a8880fbb873bea9e05430a64041..c1992aac591d8551292cb340f9ddf17130d4808e 100644 (file)
@@ -165,6 +165,9 @@ public:
        /// Clear the list of included children
        void clearIncludedChildren() { includedChildren_.clear(); }
 
+       /// update aux files of unincluded children (with \includeonly)
+       bool maintain_unincluded_children;
+
        /// returns the main font for the buffer (document)
        Font const getFont() const;
 
@@ -372,8 +375,14 @@ public:
        PDFOptions & pdfoptions();
        PDFOptions const & pdfoptions() const;
 
-       /// whether to use MathML for math output, or instead images
-       bool html_use_mathml;
+       enum MathOutput {
+               MathML,
+               HTML,
+               Images,
+               LaTeX
+       };
+       /// what to use for math output. present choices are above
+       MathOutput html_math_output;
        /// whether to attempt to be XHTML 1.1 compliant or instead be
        /// a little more mellow
        bool html_be_strict;