You may find yourself using inline templates in your directive definitions from time to time.
But it’s kind of painful, right? String concatenation sucks. Putting everything on one line sucks even more.
Do your directive templates look like this?
Or this?
Here’s a better way
If you’re using ES5, put each line into an array and join
them.
Better yet, if you’re already using ES6, use the new natively-supported multiline string. Just surround with backticks:
This has the added benefit of being able to interpolate values inside the strings like this: