fix(route): wechat/tgchannel content text format error (#9088)
This commit is contained in:
parent
0fd9f29832
commit
91729ee0e0
|
|
@ -87,6 +87,9 @@ module.exports = async (ctx) => {
|
|||
}
|
||||
}
|
||||
|
||||
// 修复文字格式错误
|
||||
single.description = single.description.replace(/<section(.*?)>/g, '<p $1/>');
|
||||
|
||||
return single;
|
||||
})
|
||||
.get()
|
||||
|
|
|
|||
Loading…
Reference in New Issue