Attachment 'title.py'
Download 1 # -*- coding: iso-8859-1 -*-
2 """
3 MoinMoin - Title Macro
4
5 This very complicated macro produces a page title
6
7 @copyright: 2007 by Oliver Siemoneit
8 @license: GNU GPL, see COPYING for details.
9 """
10
11 Dependencies = []
12
13 def execute(macro, args):
14 kw = {}
15 kw['class'] = 'title'
16 result = "%s%s%s" % (macro.formatter.heading(1, 1, **kw),
17 macro.formatter.escapedText(args),
18 macro.formatter.heading(0, 1, **kw))
19 return ''.join(result)
20
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.