Esempio n. 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);
        }
Esempio n. 2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="HTMLParser.htmlAttributeValue"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitHtmlAttributeValue([NotNull] HTMLParser.HtmlAttributeValueContext context)
 {
 }