mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-20 22:43:13 +02:00
Re-enable the experimental flag for DOCX output since it can still
generate broken DOCX files in some circumstances, for e.g., nested tables
This commit is contained in:
parent
0118d5d181
commit
1e1c3e8b9d
1 changed files with 3 additions and 2 deletions
|
|
@ -590,7 +590,9 @@ def set_metadata(self, stream, mi, type):
|
|||
from calibre.ebooks.conversion.plugins.html_output import HTMLOutput
|
||||
from calibre.ebooks.conversion.plugins.htmlz_output import HTMLZOutput
|
||||
from calibre.ebooks.conversion.plugins.snb_output import SNBOutput
|
||||
from calibre.ebooks.conversion.plugins.docx_output import DOCXOutput
|
||||
if 'CALIBRE_ENABLE_EXPERIMENTAL_DOCX_OUTPUT' in os.environ:
|
||||
from calibre.ebooks.conversion.plugins.docx_output import DOCXOutput
|
||||
plugins.append(DOCXOutput)
|
||||
|
||||
plugins += [
|
||||
ComicInput,
|
||||
|
|
@ -634,7 +636,6 @@ def set_metadata(self, stream, mi, type):
|
|||
HTMLOutput,
|
||||
HTMLZOutput,
|
||||
SNBOutput,
|
||||
DOCXOutput,
|
||||
]
|
||||
# }}}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue