diff options
author | gbrandl <devnull@localhost> | 2007-10-14 10:14:07 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-10-14 10:14:07 +0200 |
commit | fab2810cb986997bb5bca2c2a8b6ca846e364321 (patch) | |
tree | 928372a487109a93b9feb9649e14a2f2d9ac16f8 /pygments/formatters/html.py | |
parent | 22737bafe6a568f626a5dd49ab53d947c64e2bbf (diff) | |
download | pygments-fab2810cb986997bb5bca2c2a8b6ca846e364321.tar.gz |
Fix a bug in the Python lexer and a bug in the HTML formatter.
Diffstat (limited to 'pygments/formatters/html.py')
-rw-r--r-- | pygments/formatters/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py index 07045ef6..e8c80325 100644 --- a/pygments/formatters/html.py +++ b/pygments/formatters/html.py @@ -55,7 +55,7 @@ def _get_ttype_class(ttype): CSSFILE_TEMPLATE = '''\ td.linenos { background-color: #f0f0f0; padding-right: 10px; } span.lineno { background-color: #f0f0f0; padding: 0 5px 0 5px; } -pre { line-height: 125%; } +pre { line-height: 125%%; } %(styledefs)s ''' |