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
This issue is moved from misskey-dev/misskey#8050. I am not sure if this is something that can be supported, but maybe you can take a look.
When mentioning a user with wrong syntax e.g. @用户@weibo.com MFM tries to parse the mention which results in an incorrect mention.
@用户@weibo.com
[ TEXT(`@用户@weibo.com') ]
[ TEXT(`@用户'), MENTION('weibo', null, '@weibo'), TEXT('.com') ]
Maybe requiring ^|\s before and $|\s after a mention?
^|\s
$|\s
The text was updated successfully, but these errors were encountered:
メンションではない部分として明確にマッチすることで、問題を回避できるかも。 でも、まずは、Misskeyとしてこの部分をFediverseのメンションとしてサポートするかどうかを議論する必要があると思います。
Sorry, something went wrong.
No branches or pull requests
This issue is moved from misskey-dev/misskey#8050. I am not sure if this is something that can be supported, but maybe you can take a look.
💡 Summary
When mentioning a user with wrong syntax e.g.
@用户@weibo.com
MFM tries to parse the mention which results in an incorrect mention.🙂 Expected Behavior
🔧🤔 Possible Solution
Maybe requiring
^|\s
before and$|\s
after a mention?The text was updated successfully, but these errors were encountered: