diff --git a/src/calibre/ebooks/fb2/output.py b/src/calibre/ebooks/fb2/output.py
index bacaf0da91..88508b83e0 100644
--- a/src/calibre/ebooks/fb2/output.py
+++ b/src/calibre/ebooks/fb2/output.py
@@ -16,20 +16,6 @@ class FB2Output(OutputFormatPlugin):
file_type = 'fb2'
options = set([
- OptionRecommendation(name='inline_toc',
- recommended_value=False, level=OptionRecommendation.LOW,
- help=_('Add Table of Contents to beginning of the book.')),
- OptionRecommendation(name='sectionize_chapters',
- recommended_value=False, level=OptionRecommendation.LOW,
- help=_('Try to turn chapters into individual sections. ' \
- 'WARNING: ' \
- 'This option is experimental. It can cause conversion ' \
- 'to fail. It can also produce unexpected output.')),
- OptionRecommendation(name='sectionize_chapters_using_file_structure',
- recommended_value=False, level=OptionRecommendation.LOW,
- help=_('Try to turn chapters into individual sections using the ' \
- 'internal structure of the ebook. This works well for EPUB ' \
- 'books that have been internally split by chapter.')),
OptionRecommendation(name='h1_to_title',
recommended_value=False, level=OptionRecommendation.LOW,
help=_('Wrap all h1 tags with fb2 title elements.')),
diff --git a/src/calibre/gui2/convert/fb2_output.py b/src/calibre/gui2/convert/fb2_output.py
index 5d927146a5..6b1497a9db 100644
--- a/src/calibre/gui2/convert/fb2_output.py
+++ b/src/calibre/gui2/convert/fb2_output.py
@@ -17,8 +17,6 @@ class PluginWidget(Widget, Ui_Form):
ICON = I('mimetypes/fb2.png')
def __init__(self, parent, get_option, get_help, db=None, book_id=None):
- Widget.__init__(self, parent, ['inline_toc', 'sectionize_chapters',
- 'sectionize_chapters_using_file_structure', 'h1_to_title',
- 'h2_to_title', 'h3_to_title'])
+ Widget.__init__(self, parent, ['h1_to_title', 'h2_to_title', 'h3_to_title'])
self.db, self.book_id = db, book_id
self.initialize_options(get_option, get_help, db, book_id)
diff --git a/src/calibre/gui2/convert/fb2_output.ui b/src/calibre/gui2/convert/fb2_output.ui
index a90ecd615e..436719aed4 100644
--- a/src/calibre/gui2/convert/fb2_output.ui
+++ b/src/calibre/gui2/convert/fb2_output.ui
@@ -14,7 +14,7 @@
Form
- -
+
-
Qt::Vertical
@@ -28,41 +28,20 @@
-
-
-
- &Inline TOC
-
-
-
- -
-
-
- Sectionize Chapters (Use with care!)
-
-
-
- -
-
-
- Sectionize Chapters using file structure
-
-
-
- -
Wrap h1 tags with <title> elements
- -
+
-
Wrap h2 tags with <title> elements
- -
+
-
Wrap h3 tags with <title> elements