package org.apache.wicket.markup.parser.filter;
This is a markup inline filter. It identifies HTML specific issues which make HTML not 100% xml
compliant. E.g. tags like <p> often are missing the corresponding close tag.
- Author(s):
- Juergen Donnerstag
Tag stack to find balancing tags
Get the next MarkupElement from the parent MarkupFilter and handle it if the specific filter
criteria are met. Depending on the filter, it may return the MarkupElement unchanged,
modified or it remove by asking the parent handler for the next tag.
" did not have a close tag", top.getPos());
" does not have a matching open tag", tag.getPos());
Gets whether this tag does not require a closing tag.
- Parameters:
name
The tag's name, e.g. a, br, div, etc.- Returns:
- True if this tag does not require a closing tag