Attachment 'nocamelcase.py'
Download 1 from MoinMoin.parser import wiki
2 import re
3
4 class Parser(wiki.Parser):
5
6 def __init__(self, raw, request, **kw):
7 self.formatting_rules = re.sub(r"\(\?P<word>.*\n", "",
8 self.formatting_rules)
9 self.formatting_rules = re.sub(r"\(\?P<interwiki>.*\n", "",
10 self.formatting_rules)
11 wiki.Parser.__init__(self, raw, request, **kw)
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.