Html scraping made easy.

Tag name

After tag elimination (described on the previous section), we start matching the template against the Html. The first thing we take into consideration is the tag name. Same tag name and order determine a match.
<h1>${content}</h1>
Will match
<h1>${content}</h1>
But won't match
</h1>${content}<h1>