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
Detect when @user.name is in format_output and attempt to look up user ID to format as clickable link.
@user.name
format_output
Might need to consider scenario where the user wants to output @... without doing a lookup.
@...
The text was updated successfully, but these errors were encountered:
fwiw, the format is <@SLACK_ID>, see https://api.slack.com/reference/surfaces/formatting#mentioning-users
<@SLACK_ID>
so, at least for the user that triggered the message you could throw <@${_user.id}> in format_output and it will turn it into a link (tested on Slack)
<@${_user.id}>
for example:
format_output: "yo <@${_user.id}>"
Sorry, something went wrong.
No branches or pull requests
Detect when
@user.name
is informat_output
and attempt to look up user ID to format as clickable link.Might need to consider scenario where the user wants to output
@...
without doing a lookup.The text was updated successfully, but these errors were encountered: