Printrun/printrun/svg/css/atrule.py
2012-07-31 11:04:13 +02:00

6 lines
No EOL
142 B
Python

""" CSS at-rules"""
from pyparsing import Literal, Combine
from .identifier import identifier
atkeyword = Combine(Literal("@") + identifier)