Link checker transformer and esi tags
Hello,
I am using the link checker transformer for rewriting the links. I need to modify the href attributes, but got stuck at a point where I need to append a variable(eg: "xyz") that is returned using esi tags (eg: <esi:include src = "www.try.com/hello" />), so the modified attribute should be something like <a href="https://forums.adobe.com/content/trial/xyz" />
I realized esi tags cannot be placed directly in the href attribute as the traffic server will not be able to interpret them. (eg: <a href="https://forums.adobe.com/content/trial/<esi:include src=\"www.try.com/hello\" />"
Note: The requirement is post AEM processing, that is the reason I have chosen link checker transformer to transform the attributes using SAX events, and so will not be able to make any changes in JSPs.
Can any one please let me know if there is any way I can work this out.