Amaynut
Amaynut

Reputation: 4271

Use emmet plugin with jade document in PHPStorm

I just started using Jade language as a template language and HTML pre-processor. I always look how to speed up my coding, so for the plain HTML I use Emmet to generate CSS and HTML quickly. Is there a way to do the same in Jade document, for instance when I write

ul>li*5 

And click tab, I will get this in Jade:

ul
  li
  li
  li
  li
  li 

Upvotes: 1

Views: 2111

Answers (1)

lena
lena

Reputation: 93728

No, there is no support for Emmet in for jade in PHPStorm. Please feel free to file a request for this feature to youtrack, https://youtrack.jetbrains.com/issues/WEB

Upvotes: 2

Related Questions