Sorry if this post is in the wrong forum. Not sure if it is recipe related or ebook-convert.
While trying to write a recipe for Microwave and RF magazine, I came across very strange issue.
While the Calibre's own ebook reader has no problem reading the produced .epub, when I upload it to NST, the articles are not shown correctly. Only the first page of each article is shown and the rest is ignored, meaning flipping the page goes to the end of the article instead of the next page. To add more salt to the wound, Moon+ reader shows the .epub correctly.
Attached is the recipe and its .epub output.
I thought it may had been caused by "table" property so I tested these codes
Spoiler:
PHP Code:
# Converts all the article pages into one body
for body in soup.findAll('span'):
body.name = 'font'
# Removes tables to make it compatible with Mobi
for table in soup.findAll('table'):
table['class'] = table['id']
table['id'] = ''
table.name = 'font'
but the same results on NST.

Please