Is there a service other than the Link Checker that would modify href attributes in markup?
I have a servlet that returns some json data. Part of that data is a string representing a Handlebars template, which includes a section (after escaping) like <a href=\'{{{this.url}}}\'><img src=... . This is getting rewritten somewhere along the way to <a href="\"><img src='{{{this.url}}}'
I have tried configuring the Day CQ Link Checker Transformer to Disable Rewriting and Disable Checking; I have removed "a:href" from the list of elements to rewrite; I have tried adding "\" and "{" to the Special Link Prefixes option in the Day CQ Link Checker Service configuration. None of these are having any effect. So, I'm thinking maybe there's some other service that's detecting that <a href=\'{{{this.url}}}\'> is not valid markup and fixing it for me, but I'm not finding any obvious candidates for that.