Skip to content

Instantly share code, notes, and snippets.

@demofan
Created May 13, 2019 17:16
Show Gist options
  • Save demofan/18dd5023d5f7650d68640976f91372a0 to your computer and use it in GitHub Desktop.
Save demofan/18dd5023d5f7650d68640976f91372a0 to your computer and use it in GitHub Desktop.
TagHelper
[HtmlTargetElement("bold",Attributes = "bold")]
public class BoldTagHelper : TagHelper
{
public override void Process(TagHelperContext context, TagHelperOutput output)
{
output.Attributes.RemoveAll("bold");
output.PreContent.SetHtmlContent("<strong>");
output.PostContent.SetHtmlContent("</strong>");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment