Attachment 'PageBreak-1.1.py'
Download 1 # -*- coding: iso-8859-1 -*-
2 """
3 MoinMoin - PageBreak macro Version 1.1, 13.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 if macro.request.action == 'print':
21 result = '<p style="page-break-after: always">%s</p>' % (text)
22 else:
23 result = ''
24 return macro.formatter.rawHTML(result)
You are not allowed to attach a file to this page.