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
形如 xxx<img .../> 的消息可以被satori正确地拆分为 text + img 而在command('foo <a:string> <b:img>')中,这会被视为单一token被赋给第一个参数,导致处理错误
xxx<img .../>
command('foo <a:string> <b:img>')
/
No response
The text was updated successfully, but these errors were encountered:
这个问题我倾向于应该在 adapter 侧解决而非 command parser 内。
例如 foo<b>bar</b>,这种情况下可能不应该分词。
foo<b>bar</b>
对于本 issue 涉及的真实场景,让 adapter 自动添加空格恐怕更加合理。
Sorry, something went wrong.
No branches or pull requests
Describe the bug
形如
xxx<img .../>
的消息可以被satori正确地拆分为 text + img而在
command('foo <a:string> <b:img>')
中,这会被视为单一token被赋给第一个参数,导致处理错误Steps to reproduce
/
Expected behavior
/
Screenshots
No response
Versions
Additional context
No response
The text was updated successfully, but these errors were encountered: