blockkit icon indicating copy to clipboard operation
blockkit copied to clipboard

Links in rich text

Open DarkForest571 opened this issue 1 year ago • 0 comments

There is no class for links in rich text. Markdown text can't be used in this case cause it can't be placed in a rich text block. Example message json -

{
	"blocks": [
		{
			"type": "rich_text",
			"elements": [
				{
					"type": "rich_text_section",
					"elements": [
						{
							"type": "text",
							"text": "Hello there, I am a basic "
						},
						{
							"type": "link",
							"url": "https://www.google.com/",
							"text": "rich text link!"
						}
					]
				}
			]
		}
	]
}

And in builder

DarkForest571 avatar Jul 08 '24 07:07 DarkForest571