# HG changeset patch # User Paul Boddie # Date 1196016887 -3600 # Node ID 297da33020756c024897d5c27351db18a95ba318 # Parent 156e6b0614d3258970ea8dbd1a06b5247eb4e325 Removed unnecessary macros. diff -r 156e6b0614d3 -r 297da3302075 macros/EndDiv.py --- a/macros/EndDiv.py Sun Nov 25 19:03:30 2007 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -# -*- coding: iso-8859-1 -*- -""" - Outputs a div end tag. - - @copyright: 2007 by Paul Boddie - @license: GNU GPL, see COPYING for details -""" - -Dependencies = [] - -def execute(macro, args): - return macro.formatter.div(0) - -# vim: tabstop=4 expandtab shiftwidth=4 diff -r 156e6b0614d3 -r 297da3302075 macros/StartDiv.py --- a/macros/StartDiv.py Sun Nov 25 19:03:30 2007 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -# -*- coding: iso-8859-1 -*- -""" - Outputs a div start tag with the specified identifier. - - @copyright: 2007 by Paul Boddie - @license: GNU GPL, see COPYING for details -""" - -Dependencies = [] - -def execute(macro, args): - return macro.formatter.div(1, attr={"id" : args}) - -# vim: tabstop=4 expandtab shiftwidth=4