From cfaf539e180b2b545bd5db6234b124325ab1b190 Mon Sep 17 00:00:00 2001 From: cmdln Date: Sun, 23 Oct 2011 20:35:49 -0400 Subject: [PATCH] Handle multipy entity. --- append.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/append.py b/append.py index 2ae7c4e..b882d0c 100755 --- a/append.py +++ b/append.py @@ -181,6 +181,7 @@ def __title(title): fixed = title fixed = re.sub(u'\u2013', '-', fixed) fixed = re.sub(u'\u2019', '\'', fixed) + fixed = re.sub(u'\xd7', 'x', fixed) return fixed @@ -198,6 +199,7 @@ def __description(config, content): description = re.sub('

\n', '', description) description = re.sub(re.compile('License.

.*$', re.M | re.S), 'License.

', description) description = re.sub('

\n', '

\n\n', description) + description = re.sub(u'\xd7', 'x', description) return re.sub('

%(info_lede)s' % config, '

%(more_info)s %(info_lede)s' % config, description) @@ -231,6 +233,7 @@ def __archive_slug(title): """ slug = re.sub('\([^0-9]\)-\([^0-9]\)', '\1\2', title) slug = re.sub(u'\u2013', '-', slug) + slug = re.sub(u'\xd7', 'x', slug) slug = re.sub(u'\u2019', '', slug) slug = re.sub('[^A-Za-z0-9\-\.]', ' ', slug) slug = re.sub(' {2,}', ' ', slug)