Bump up the default base size for recipes to 12 pts, since the reader is unable to reflow a number of them.

This commit is contained in:
Kovid Goyal 2008-03-28 01:33:04 +00:00
parent 8b02c3ac2d
commit 95fe65b499

View File

@ -428,6 +428,8 @@ class BasicNewsRecipe(object):
self.navbar = templates.NavBarTemplate() self.navbar = templates.NavBarTemplate()
self.html2lrf_options.extend(['--page-break-before', '$', '--use-spine', '--header']) self.html2lrf_options.extend(['--page-break-before', '$', '--use-spine', '--header'])
if '--base-font-size' not in self.html2lrf_options:
self.html2lrf_options.extend(['--base-font-size', '12'])
self.failed_downloads = [] self.failed_downloads = []
self.partial_failures = [] self.partial_failures = []