|
@@ -170,6 +170,10 @@ class LangAreaView(TemplateView):
|
|
|
lk = lk.replace('%', '_')
|
|
|
lk = lk.replace(';', '_')
|
|
|
lk = lk.replace('‘', '_')
|
|
|
+ T = res[l]
|
|
|
+ T.replace('"', '\"')
|
|
|
+ res[l] = T
|
|
|
+ print(res[l])
|
|
|
# 正则表达式
|
|
|
# re.sub("[a-z]+", "$", "123abc78ab9cdeg00t8")
|
|
|
content_val = res[l].replace("'","\\'")
|