File: style.py

package info (click to toggle)
python-simpy 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 17,300 kB
  • ctags: 2,568
  • sloc: python: 11,172; makefile: 145
file content (11 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
# coding=utf-8

from pygments.token import Comment
from sphinx.highlighting import SphinxStyle

class SimpyStyle(SphinxStyle):
    styles = SphinxStyle.styles
    styles.update({
        Comment.Annotation: ('noinherit bg:#ffff00 border:#ff8000 nobold '
            'noitalic #000000')
    })