We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d0b52 commit c437b88Copy full SHA for c437b88
src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs
@@ -20,8 +20,8 @@ namespace Microsoft.AspNetCore.Mvc.Rendering;
20
[DebuggerDisplay("{DebuggerToString()}")]
21
public class TagBuilder : IHtmlContent
22
{
23
- // Note '.' is valid according to the HTML 4.01 specification. Disallowed here to avoid
24
- // confusion with CSS class selectors or when using jQuery.
+ // Note '.' is valid according to the HTML 4.01 specification. Disallowed here
+ // to avoid confusion with CSS class selectors or when using jQuery.
25
private static readonly SearchValues<char> _html401IdChars =
26
SearchValues.Create("-0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz");
27
0 commit comments