%PDF- %PDF-
Direktori : /proc/thread-self/root/usr/lib/calibre/calibre/gui2/tweak_book/ |
Current File : //proc/thread-self/root/usr/lib/calibre/calibre/gui2/tweak_book/templates.py |
#!/usr/bin/env python3 __license__ = 'GPL v3' __copyright__ = '2013, Kovid Goyal <kovid at kovidgoyal.net>' from calibre import prepare_string_for_xml from calibre.gui2.tweak_book import current_container, tprefs from polyglot.builtins import iteritems DEFAULT_TEMPLATES = { 'html': '''\ <?xml version='1.0' encoding='utf-8'?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>{TITLE}</title> </head> <body> %CURSOR% </body> </html> ''', 'css': '''\ @charset "utf-8"; /* Styles for {TITLE} */ %CURSOR% ''', } def raw_template_for(syntax): return tprefs['templates'].get(syntax, DEFAULT_TEMPLATES.get(syntax, '')) def template_for(syntax): mi = current_container().mi data = { 'TITLE':mi.title, 'AUTHOR': ' & '.join(mi.authors), } return raw_template_for(syntax).format( **{k:prepare_string_for_xml(v, True) for k, v in iteritems(data)})