PhpStorm Pug Inspector barks when I use Angular multi-line statements.
Example:
i.btActive.fa([ngClass]="{\
'fa-play': !playing,\
'fa-pause': playing}")
//alternative way supported by pug:
i.btActive.fa([ngClass]=`{
'fa-play': !playing,
'fa-pause': playing}`)
Please sign in to leave a comment.
Please vote for https://youtrack.jetbrains.com/issue/WEB-29794
ES6 template strings are not supported either: https://youtrack.jetbrains.com/issue/WEB-22802
Thanks so much.
PS. Btw, Pug compiles `` to "".