Is there any Sublime package to syntax-highlight HTML inside JavaScript strings?
(Note the question is only about HTML inside JS strings, not syntax highlighting in general.)
Specifically I am writing Angular components using inline templates
angular.module('compMod', []).component('myComp', {
template: `<div>Some Text</div>`
});
and looking to highlight HTML syntax inside the ES6 template strings.