# -*- coding: utf-8 -*- """ This macro allows to add a Technorati chart graph for a given name. Author: Jeremy Chone TODO: - Add more arguments (e.g. days, size) Usage: {{{ [[Technorati(string)]] }}} """ def execute(hdf, args, env): if args is None : return 'No String' else : #add the link r = '' #add the image (and close the link tag) r += 'Technorati Chart' return r