Printrun/svg/css/atrule.py

6 lines
142 B
Python
Raw Normal View History

2012-05-21 20:38:49 +00:00
""" CSS at-rules"""
from pyparsing import Literal, Combine
from .identifier import identifier
atkeyword = Combine(Literal("@") + identifier)