# HG changeset patch # User Paul Boddie # Date 1381598506 -7200 # Node ID bdc05cebca78e0025d1bfe3dd02086f4731b2120 # Parent 8d385ce66bd045580f48232bcca6f2ff4469ea2b Fixed the quoting of text presented as an argument to the Verbatim macro. diff -r 8d385ce66bd0 -r bdc05cebca78 MoinSupport.py --- a/MoinSupport.py Sat Oct 12 19:10:22 2013 +0200 +++ b/MoinSupport.py Sat Oct 12 19:21:46 2013 +0200 @@ -974,7 +974,7 @@ "Encode the given 'text' in a verbatim representation." - return "<>" % text + return "<>" % quoteMacroArgument(None, text) def getPrettyTitle(title): diff -r 8d385ce66bd0 -r bdc05cebca78 README.txt --- a/README.txt Sat Oct 12 19:10:22 2013 +0200 +++ b/README.txt Sat Oct 12 19:21:46 2013 +0200 @@ -71,6 +71,7 @@ attempt is made to inspect Olson time zone information. * Fixed DateSupport to handle NonExistentTimeError. * Added macro argument quoting functions. + * Fixed the quoting of text presented as an argument to the Verbatim macro. New in MoinSupport 0.4 (Changes since MoinSupport 0.3) ------------------------------------------------------