mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
16 lines
218 B
HTML
16 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>
|