Remove the experimental flag for DOCX output since we now generate working DOCX files

This commit is contained in:
Kovid Goyal 2015-03-26 18:24:45 +05:30
parent e07bd9b022
commit 29bde02d61
2 changed files with 3 additions and 5 deletions

View File

@ -20,7 +20,7 @@ It can convert every input format in the following list, to every output format.
*Input Formats:* AZW, AZW3, AZW4, CBZ, CBR, CBC, CHM, DJVU, DOCX, EPUB, FB2, HTML, HTMLZ, LIT, LRF, MOBI, ODT, PDF, PRC, PDB, PML, RB, RTF, SNB, TCR, TXT, TXTZ
*Output Formats:* AZW3, EPUB, FB2, OEB, LIT, LRF, MOBI, HTMLZ, PDB, PMLZ, RB, PDF, RTF, SNB, TCR, TXT, TXTZ, ZIP
*Output Formats:* AZW3, EPUB, DOCX, FB2, HTMLZ, OEB, LIT, LRF, MOBI, PDB, PMLZ, RB, PDF, RTF, SNB, TCR, TXT, TXTZ, ZIP
.. note ::

View File

@ -590,10 +590,7 @@ from calibre.ebooks.conversion.plugins.txt_output import TXTOutput, TXTZOutput
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
enable_docx_output = 'CALIBRE_ENABLE_EXPERIMENTAL_DOCX_OUTPUT' in os.environ
if enable_docx_output:
from calibre.ebooks.conversion.plugins.docx_output import DOCXOutput
plugins.append(DOCXOutput)
from calibre.ebooks.conversion.plugins.docx_output import DOCXOutput
plugins += [
ComicInput,
@ -637,6 +634,7 @@ plugins += [
HTMLOutput,
HTMLZOutput,
SNBOutput,
DOCXOutput,
]
# }}}