
Ordinary CSS strings may contain @{...}-style variables. Here are some examples: content: "@{breadcrumb-separator}\00a0"; background-image: url("@{file-2x}"); .col(@index + 1, ~"@{list}, @{item}");
32 lines
652 B
Python
32 lines
652 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
.. module:: lesscpy.plib
|
|
:synopsis: Parse Nodes for Lesscpy
|
|
|
|
Copyright (c)
|
|
See LICENSE for details.
|
|
.. moduleauthor:: Johann T. Mariusson <jtm@robot.is>
|
|
"""
|
|
__all__ = [
|
|
'Block',
|
|
'Call',
|
|
'Deferred',
|
|
'Expression',
|
|
'Identifier',
|
|
'Mixin',
|
|
'Node',
|
|
'Property',
|
|
'Statement',
|
|
'Variable'
|
|
]
|
|
from .block import Block
|
|
from .call import Call
|
|
from .deferred import Deferred
|
|
from .expression import Expression
|
|
from .identifier import Identifier
|
|
from .mixin import Mixin
|
|
from .node import Node
|
|
from .property import Property
|
|
from .statement import Statement
|
|
from .variable import Variable
|