Slack Block Kit Rich text Bullet List
Here is an "undocumented" example of how we can compose bullet list with help of block kit
{
"blocks": [
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_list",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "text",
"text": "hello",
"style": {
"bold": true
}
},
{
"type": "text",
"text": " "
},
{
"type": "link",
"url": "https://microsoft.com",
"text": "link"
},
{
"type": "text",
"text": " "
}
]
},
{
"type": "rich_text_section",
"elements": [
{
"type": "text",
"text": "test"
}
]
}
],
"style": "bullet",
"indent": 0
}
]
}
]
}
it will give us something like this: