The Web Clipper now supports both URL and schema.org matching in a template. Schema.org recipes are not available on every site, but meta variables seem to be more common.
In my case, I want to create several templates for GitHub,
one for repo home page, one for issues, and another for files in the source tree.
On GitHub, the meta:name:route-controller variable can be used to distinguish these pages.
Since we already have schema.org matching, could we add support for the meta variable-based matching?
Furthermore, is it possible to trigger a temalpte with a conjuction(/) of a list of filters?
Say, if the URL matches github.com and the route-controller is some specific value.
Proposed solution
Support template matching based on mata-variables.
Support triggering a template if multiple rules fire together.
Current workaround (optional)
Code the URL patterns in Regular Expression and use RegEx-based matching
But this is not always feasible and it’s really painful to write and inspect RegExes.