I would like to modify the recipe "Financial Times (UK)" and disable the Table of Contents. Instead of the TOC in the EPUB, I want to use the navigation links provided by the recipe. The reason is that my reader Sony PRS-T2 wastes a lot of screen space with a large "Table of Contents" button when displaying an EPUB from this recipe. If I disable TOC, the button will be gone, I suppose.
I added the line 'max-toc-links' : 0 to the recipe, as shown below. But this modified recipe still creates a complete TOC. Please let me know what I am doing wrong.
Code:
conversion_options = {
'comment' : description
, 'tags' : category
, 'publisher' : publisher
, 'language' : language
, 'linearize_tables' : True
, 'max-toc-links' : 0
}