Open
Description
Hi,
I am using Visual Studio Enterprise 2022 (x64) Version 17.7.5.
The tag helper class:
/// <summary>
/// This is a <em>container</em>.
/// </summary>
[HtmlTargetElement("container")]
public class ContainerTagHelper : TagHelper
{
public override void Process(TagHelperContext context, TagHelperOutput output)
{
}
}
Razor Page Syntax:
<container></container>
Hovering the mouse over the <container>
tag, the summary displays as This is a <em>container</em>.
instead of showing "This is a container."
Activity