From 0c08f7c5505546865756a6835c815e72f821988c Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 29 Nov 2015 12:04:10 +0100 Subject: [PATCH] Re-added some characters that would be affected by inlinefunc nesting. --- evennia/utils/nested_inlinefuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/nested_inlinefuncs.py b/evennia/utils/nested_inlinefuncs.py index f58ae2be4..b182866bc 100644 --- a/evennia/utils/nested_inlinefuncs.py +++ b/evennia/utils/nested_inlinefuncs.py @@ -189,7 +189,7 @@ _RE_TOKEN = re.compile(r""" (?P(?(?\\'|\\"|\\\)|\\$\w+\()| # escaped tokens should re-appear in text - (?P[\w\s.-\/#!%\^&\*;:=\-_`~\(}{\[\]]+) # everything else should also be included""", + (?P[\w\s.-\/#!%\^&\*;:=\-\"\'_`~\(}{\[\]]+) # everything else should also be included""", re.UNICODE + re.IGNORECASE + re.VERBOSE + re.DOTALL)