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
We have a consistency issue in regards to the handling of HTML entities ( , <, >, etc).
<
>
{ "type": "AdaptiveCard", "body": [ { "type": "TextBlock", "text": "< <" } ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.0" }
In the HTML JavaScript renderer, as seen from the Visualizer, these are understood and displayed.
In the UWP (and I assume other) renderers, these are NOT understood and displayed as raw text.
We should have consistent behavior here. Looking at CommonMark's specification of Markdown, HTML entities should be understood and processed by Markdown. Considering we are supporting markdown in our text blocks, we should be doing this?
The text was updated successfully, but these errors were encountered:
Duping to #1984
Sorry, something went wrong.
No branches or pull requests
We have a consistency issue in regards to the handling of HTML entities (
,<
,>
, etc).Repro payload
HTML renderer
In the HTML JavaScript renderer, as seen from the Visualizer, these are understood and displayed.
Other renderers
In the UWP (and I assume other) renderers, these are NOT understood and displayed as raw text.
We should have consistent behavior here. Looking at CommonMark's specification of Markdown, HTML entities should be understood and processed by Markdown. Considering we are supporting markdown in our text blocks, we should be doing this?
The text was updated successfully, but these errors were encountered: