Example #1
0
        public override void ExitHtmlAttributeValue(HTMLParser.HtmlAttributeValueContext ctx)
        {
            var attrValue = ctx.ATTVALUE_VALUE();
            if (attrValue == null)
            {
                return;
            }

            var attrValueText = attrValue.GetText();
            FilteredPut(ctx, attrValueText);
        }