Adding rel="nofollow" to MoinMoin
--- MoinMoin/formatter/text_html.old 2004-02-10 16:01:55.000000000 -0500
+++ MoinMoin/formatter/text_html.py 2005-01-18 21:29:10.000000000 -0500
@@ -90,6 +90,7 @@
# create link
str = '<a'
if css: str = '%s class="%s"' % (str, css)
+ if css and css=="external": str += ' rel="nofollow"'
if title: str = '%s title="%s"' % (str, title)
str = '%s href="%s">%s</a>' % (str, wikiutil.escape(url, 1), text)