We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下两种结构的消息元素转换成 onebot 元素时,会产生多余的连续 text 元素,导致某些后端无法发送
br
a<br />b
a
\n
b
a<>b</>c
c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
以下两种结构的消息元素转换成 onebot 元素时,会产生多余的连续 text 元素,导致某些后端无法发送
br
元素和文本节点,例如a<br />b
(产生a
,\n
,b
3 个 text 元素)a<>b</>c
(产生a
,b
,c
3 个 text 元素)The text was updated successfully, but these errors were encountered: