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
When posting by Webhook, we can see that links aren't being rendered.
This could be caused by a malformed or not fully formed block created in SlackWebhookConnection
SlackWebhookConnection
case SnippetType.Link: text.RequireText("Text"); reference.RequireText("Link"); blocks.Add(new SlackWebhookPostBlock() { text = new SlackWebhookPostBlockText() { text = $"<{reference!}|{text!}>", type = "mrkdwn" }, }); break;
It might be better to render this as a rich text section inside a rich text block.
Block-kit looks like a powerful tool that we are not yet using to its full potential.
We can use the block-kit builder to experiment with the right combination of block types.
The text was updated successfully, but these errors were encountered:
Working branch: P36_improved-typing-for-BlockKit
P36_improved-typing-for-BlockKit
Sorry, something went wrong.
instantiator
No branches or pull requests
Context
When posting by Webhook, we can see that links aren't being rendered.
Hypothesis
This could be caused by a malformed or not fully formed block created in
SlackWebhookConnection
It might be better to render this as a rich text section inside a rich text block.
Block-kit looks like a powerful tool that we are not yet using to its full potential.
We can use the block-kit builder to experiment with the right combination of block types.
The text was updated successfully, but these errors were encountered: