Attachment 'PageBreak-1.0.py'

Download

   1 # -*- coding: iso-8859-1 -*-
   2 """
   3     MoinMoin - PageBreak macro Version 1.0, 12.10.2012
   4     
   5     Syntax:
   6        <<PrintBreak>>; <<PrintBreak()>> 
   7        <<PrinTBreak(text)>>
   8        
   9     @copyright: 2012 Ian Riley <ian.riley@internode.on.net>
  10     license: GNU GPL, see COPYING for details.
  11 
  12 """
  13 
  14 from MoinMoin import wikiutil
  15 
  16 def execute(macro, args):
  17     text = args
  18     if not text: text = ''
  19     text = wikiutil.escape(text) # make sure nothing harmful
  20     result = '<p style="page-break-after: always">%s</p>' % (text)
  21     return result

You are not allowed to attach a file to this page.