mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 19:46:58 -04:00
15 lines
218 B
HTML
15 lines
218 B
HTML
@if (someCondition) {
|
|
<p>someCondition is true</p>
|
|
} @else {
|
|
<p>someCondition is false</p>
|
|
}
|
|
|
|
<div>
|
|
@if (someOther) {
|
|
<span>True</span>
|
|
|
|
@if (nestedCondition) {
|
|
<span>Nested</span>
|
|
}
|
|
}
|
|
</div>
|