diff --git a/seahub/wiki/views.py b/seahub/wiki/views.py index d67d178e0a..73f6736b26 100644 --- a/seahub/wiki/views.py +++ b/seahub/wiki/views.py @@ -40,6 +40,7 @@ markdown_tags = [ "img", "a", "sub", "sup", + "table", "thead", "tbody", "tr", "th", "td", ] markdown_attrs = { diff --git a/tests/api/endpoints/admin/test_groups.py b/tests/api/endpoints/admin/test_groups.py index 4cc14d5b75..452fe1238a 100644 --- a/tests/api/endpoints/admin/test_groups.py +++ b/tests/api/endpoints/admin/test_groups.py @@ -94,7 +94,7 @@ class GroupsTest(BaseTestCase): self.login_as(self.admin) url = reverse('api-v2.1-admin-groups') - other_punctuation = """!"#$%&()*+,/:;<=>?@[\]^`{|}~""" + other_punctuation = """!"#$%&*+,/:;<=>?@[\]^`{|}~""" group_name = randstring(2) + random.choice(other_punctuation) + randstring(2) data = {