This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Caveat emptor and all of that; apologies for mistakes. | |
class InlineStylesTreeprocessor(Treeprocessor): | |
""" | |
A treeprocessor that recursively applies inline styles | |
to all elements of a given tree. | |
""" | |
def __init__(self, styles): | |
self.styles = styles | |