External template file does not allow styling

The following template will work correctly if initialized as html->template_container

    <div style="color: green">#Package# : #Version#</div>
    <br/>#Maintainer#

However, the same template will fail as an external template: http->foo.html with a javascript error within dhtmlx.js (I am using the suite file; haven’t tested with individual components.)

No attributes are allowed within the

tag - or (I am guessing) the template parsing fails.

So:

… and the like all generate a js error.

Please try to use single quotes instead of double quotes in the template.

Yep, that seems to work! Thank you.