I have looked at how to embed HTML syntax in JavaScript string from HTML syntax highlighting in javascript strings in vim.However, when I use CoffeeScript I cannot get the same thing working by editing \[code\]coffee.vim\[/code\] syntax file in a similar way. I got recursive errors which said including \[code\]html.vim\[/code\] make it too nested.I have some HTML template in CoffeeScript like the following::\[code\]angular.module('m', []) .directive( 'myDirective' [ -> template: """ <div> <div>This is <b>bold</b> text</div> <div><i>This should be italic.</i></div> </div> """ ] )\[/code\]How do I get the template HTML syntax in CoffeeScript string properly highlighted in VIM?