Hi ! Thanks for this great component.
About the paginated pages, I have the following situation (using SEF) :
page.html
page.html?start=1
In order to create specific metas for each of these pages with Tag Meta, I had to do that :
page.html$
page.html\?start=1
The $ stand for end of chain in regexp. That is necessary, wether the page "page.html?start=1" may get the wrong meta (or not, depending on their order in the database).
Explanation : When there is no $ for the first uri, the both uri are returned by the regexp SQL, and the first result is taken so it may be the wrong one depending on their order.