Preserve quote style when rendering markup content #33548
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #20950.
When a component renders static markup like:
The Razor compiler interprets this collection of lines as a MarkupBlock. Unlike tag helper attributes, we don't store any information about what type of quote is used in the attributes (typically represented with an
AttributeStructure
enum). Instead, we indiscriminately use double quotes for all attributes on an HTML element within a markup block.aspnetcore/src/Razor/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentMarkupBlockPass.cs
Lines 330 to 335 in 3d1c0e3
This causes issues in particular if a markup element like
<input onfocus='alert("Test");' />
is rendered because we produce the incorrectly quoted<input onfocus="alert("Test");" />
. To resolve this, we add a check when constructing the attribute string to preserve the original quote style designated by the user.