File: style.py

package info (click to toggle)
python-simpy 2.3.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,864 kB
  • sloc: python: 11,171; makefile: 143
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')
    })