Enable display of docbook5 output in the Code Preview Plane

This commit is contained in:
Kornel Benko 2020-07-23 14:11:13 +02:00
parent c9f8469c00
commit 9e977932c5

View File

@ -2730,6 +2730,8 @@ OutputParams::FLAVOR BufferParams::getOutputFlavor(string const & format) const
// something with formats. // something with formats.
if (dformat == "xhtml") if (dformat == "xhtml")
result = OutputParams::HTML; result = OutputParams::HTML;
else if (dformat == "docbook5")
result = OutputParams::DOCBOOK5;
else if (dformat == "text") else if (dformat == "text")
result = OutputParams::TEXT; result = OutputParams::TEXT;
else if (dformat == "lyx") else if (dformat == "lyx")