Extra simple macro:
{{{
#!python
# -*- coding: iso-8859-1 -*-
"""
    MoinMoin - trade Macro

    This very complicated macro produces the html command &trade; I.e. a trademark symbol.

    @copyright: I claim no copyright.
    @license: GNU GPL, see COPYING for details.
"""

Dependencies = []

def execute(macro, args):
    return macro.formatter.rawHTML("&trade;")
}}}
