brad - 2007-04-21

I've been toying around parsing links using a custom tag that extends link tag like the example.
Now I need to parse image maps and wondering if I should switch over the link parsing to a TagFindingVisitor
because that's where I'm probably going with map parsing.

My parsing consists of finding each anchor or area href that has a certain attribute, if true, replacing href
and check target attribute. Have everything working fine with anchors using the link tag but then realized that's
not going to work for image maps. That was a big duh!! on my part. Just looking for advice.