class documentation

class UnescapePostprocessor(Postprocessor): (source)

View In Hierarchy

Restore escaped chars

Method run Subclasses of Postprocessor should implement a `run` method, which takes the html document as a single text string and returns a (possibly modified) string.
Method unescape Undocumented
Constant RE Undocumented

Inherited from Processor (via Postprocessor):

Method __init__ Undocumented
Instance Variable md Undocumented
def run(self, text): (source)

Subclasses of Postprocessor should implement a `run` method, which takes the html document as a single text string and returns a (possibly modified) string.

def unescape(self, m): (source)

Undocumented

Undocumented

Value
re.compile("""{}(\\d+){}""".format(util.STX, util.ETX))