ep2008-dev

Change of macros/StartDiv.py

2:297da3302075
macros/StartDiv.py
     1.1 --- a/macros/StartDiv.py	Sun Nov 25 19:03:30 2007 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,14 +0,0 @@
     1.4 -# -*- coding: iso-8859-1 -*-
     1.5 -"""
     1.6 -    Outputs a div start tag with the specified identifier.
     1.7 -
     1.8 -    @copyright: 2007 by Paul Boddie
     1.9 -    @license: GNU GPL, see COPYING for details
    1.10 -"""
    1.11 -
    1.12 -Dependencies = []
    1.13 -
    1.14 -def execute(macro, args):
    1.15 -    return macro.formatter.div(1, attr={"id" : args})
    1.16 -
    1.17 -# vim: tabstop=4 expandtab shiftwidth=4