]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / OutputParams.h
index 48603476b74cbf82cd40d73defdb2b2f74efcfe3..1abbfe8dc776c29e45a6eb16d4be77f1130ac7af 100644 (file)
@@ -34,7 +34,9 @@ public:
                LATEX,
                PDFLATEX,
                XETEX,
-               XML
+               XML,
+               HTML,
+               TEXT
        };
 
        enum TableCell {
@@ -208,8 +210,12 @@ public:
        bool dryrun;
        /// Should we output verbatim or escape LaTeX's special chars?
        bool verbatim;
-       /// Should we output captions? (Used in HTML output.)
-       bool disable_captions;
+       /// Should we output captions?
+       bool html_disable_captions;
+       /// Are we already in a paragraph?
+       bool html_in_par;
+       /// Does the present context even permit paragraphs?
+       bool html_make_pars;
 };