1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 17:33:18 +00:00

fix wiki display table (#5262)

* fix wiki display table

* fix test
This commit is contained in:
王健辉
2022-09-19 17:28:13 +08:00
committed by GitHub
parent d8230f1fd4
commit e63bbad7ec
2 changed files with 2 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ markdown_tags = [
"img", "img",
"a", "a",
"sub", "sup", "sub", "sup",
"table", "thead", "tbody", "tr", "th", "td",
] ]
markdown_attrs = { markdown_attrs = {

View File

@@ -94,7 +94,7 @@ class GroupsTest(BaseTestCase):
self.login_as(self.admin) self.login_as(self.admin)
url = reverse('api-v2.1-admin-groups') url = reverse('api-v2.1-admin-groups')
other_punctuation = """!"#$%&()*+,/:;<=>?@[\]^`{|}~""" other_punctuation = """!"#$%&*+,/:;<=>?@[\]^`{|}~"""
group_name = randstring(2) + random.choice(other_punctuation) + randstring(2) group_name = randstring(2) + random.choice(other_punctuation) + randstring(2)
data = { data = {