""" Processor that encloses the processed text in blockquote tags """

def execute(hdf, text, env):
    return '<blockquote>\n%s</blockquote>' % text

