'Emmet multiple inline elements with break lines
Am trying to output 3 buttons(For example) with break lines between them
so when I type button.btn*3
the output looks like this
<button class="btn"></button><button class="btn"></button><button class="btn"></button>
How can I achieve an output like this for the Inline elements with emmet is that possible?
<button class="btn"></button>
<button class="btn"></button>
<button class="btn"></button>
Solution 1:[1]
I found a solution for my question,
"emmet.syntaxProfiles": {
"html": {
"inline_break": true,
}
}
this should be added to the settings.json file
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | mmh4all |
