I’m using a third-party ecommerce search provider, but we’re hosting the template files so we can modify them as needed.
Our website is running off of Perl, which is having trouble handling this template tag:
[--NEW_ROW--]
How would I go about escaping or commenting that line out, so the third-party tool could still process it, but Perl wouldn’t choke on it?
If it’s parsing
-NEW_ROW-as Perl because it’s between[-and-], does changing the string to[-#-NEW_ROW--]help? I know you’ve already come up with a solution, but if you want to throw .html files through the parser in the future, this might fix it.