Platform
Author or host
Version of SDK
- Android : 1.1.1
- iOS : 1.0.3
Issue
Markdown links that have a combination of numbers and special characters only do not get rendered. Consider the following JSO
{
"contentType": "application/vnd.microsoft.card.adaptive",
"type": "AdaptiveCard",
"body": [
{
"size": "medium",
"text": "Build [20190523.2](https:www.google.com) failed",
"weight": "bolder",
"type": "TextBlock",
"wrap": true,
"isSubtle": false,
"spacing": "medium",
"color": "default",
"horizontalAlignment": "left",
"separator": true
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}
The link inside the "text" field of the TextBlock is not rendered. However if we change the link tag to remove the special character or add an alphabet, the link is rendered fine. Thus
"text": "Build [201905232](https:www.google.com) failed",
or
"text": "Build [Some text 20190523.2](https:www.google.com) failed",
are rendered fine.
The same problem is also there with links in factSet and column set.
Platform
Author or host
Version of SDK
Issue
Markdown links that have a combination of numbers and special characters only do not get rendered. Consider the following JSO
The link inside the "text" field of the TextBlock is not rendered. However if we change the link tag to remove the special character or add an alphabet, the link is rendered fine. Thus
"text": "Build [201905232](https:www.google.com) failed",or
"text": "Build [Some text 20190523.2](https:www.google.com) failed",are rendered fine.
The same problem is also there with links in factSet and column set.