What's the syntax for setting html2epub options within a recipe? Say I want to change the title, author and publisher. I'm studying TheSugarQuill recipe and for LRF it seems to be:
Code:
html2lrf_options = [
'--title', title,
'--author', author,
'--publisher', publisher
]
Do I use the same syntax for html2epub? Thanks!