mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Remove the experimental flag for DOCX output since we now generate working DOCX files
This commit is contained in:
parent
e07bd9b022
commit
29bde02d61
@ -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
|
*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 ::
|
.. note ::
|
||||||
|
|
||||||
|
@ -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.html_output import HTMLOutput
|
||||||
from calibre.ebooks.conversion.plugins.htmlz_output import HTMLZOutput
|
from calibre.ebooks.conversion.plugins.htmlz_output import HTMLZOutput
|
||||||
from calibre.ebooks.conversion.plugins.snb_output import SNBOutput
|
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
|
from calibre.ebooks.conversion.plugins.docx_output import DOCXOutput
|
||||||
plugins.append(DOCXOutput)
|
|
||||||
|
|
||||||
plugins += [
|
plugins += [
|
||||||
ComicInput,
|
ComicInput,
|
||||||
@ -637,6 +634,7 @@ plugins += [
|
|||||||
HTMLOutput,
|
HTMLOutput,
|
||||||
HTMLZOutput,
|
HTMLZOutput,
|
||||||
SNBOutput,
|
SNBOutput,
|
||||||
|
DOCXOutput,
|
||||||
]
|
]
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user