From ca50342e88bed783f513d0152de59d32b0bd1c8e Mon Sep 17 00:00:00 2001 From: karxi Date: Sun, 13 Nov 2016 17:14:24 -0500 Subject: [PATCH] Disabled bold, italics and underline recognition due to lack of use/common version differences. --- parsetools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/parsetools.py b/parsetools.py index bc7c096..7801557 100644 --- a/parsetools.py +++ b/parsetools.py @@ -199,7 +199,10 @@ def lexMessage(string): lexlist = [(mecmd, _mecmdre), (colorBegin, _ctag_begin), (colorBegin, _gtag_begin), (colorEnd, _ctag_end), - (formatBegin, _format_begin), (formatEnd, _format_end), + # karxi: Disabled this for now. No common versions of Pesterchum + # actually use it, save for Chumdroid...which shouldn't. + # When I change out parsers, I might add it back in. + ##(formatBegin, _format_begin), (formatEnd, _format_end), (imagelink, _imgre), (hyperlink, _urlre), (hyperlink_lazy, _url2re), (memolex, _memore),