Quote:
Originally Posted by Starson17
AFAIK, it appears in stylesheet.css.
|
They're not appearing in the sylesheet.css either (the recursive grep would catch it) but i'll do a deeper inspection there.
Quote:
Originally Posted by Starson17
You need indents in the extra_css, just like elsewhere, or they'll get ignored.
|
Is this a quirk of the calibre library? It's not a python syntax rule. A python syntax error would also throw an exception.
Code:
>>> class A(object):
... foo = """
... This is a docstring. No
... indents necessary within the block.
... """
...
>>> a = A()
>>> a.foo
'\nThis is a docstring. No \nindents necessary within the block.\n'