Search code examples
htmlformattingphpstormwebstorm

When formatting code using Ctrl+Alt+L, how to make the text inside the tags hyphenated?


Right now I have the view:

<div>
    <a>Справка после приёма</a>
    <a>Направление на R-графию</a>
    <a>ТАЛОН на ВИЧ/RW</a>
</div>

And I want it to become:

<div>
    <a>
        Справка после приёма
    </a>
    <a>
        Направление на R-графию
    </a>
    <a>
        ТАЛОН на ВИЧ/RW
    </a>
</div>

How can I set it in PhpStorm?


Solution

  • there are no settings for this; please vote for WEB-310 to be notified on any progress with this feature request