mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-06 04:44:42 +00:00
--preser-blank-lines option can be used to try and keep existing blank lines during formatting. closes #261
28 lines
559 B
HTML
28 lines
559 B
HTML
|
|
{% if abc == 101 %}
|
|
interface Ethernet1/2
|
|
description // Connected to leaf-2
|
|
no switchport
|
|
ip address 10.1.2.1/30
|
|
ip router ospf 1 area 0.0.0.0
|
|
no shutdown
|
|
{% endif %}
|
|
|
|
|
|
{% if abc == 102 %}
|
|
interface Ethernet1/2
|
|
description // Connected to leaf-2
|
|
no switchport
|
|
ip address 10.1.2.1/30
|
|
ip router ospf 1 area 0.0.0.0
|
|
no shutdown
|
|
{% endif %}
|
|
|
|
{% if abc == 103 %}
|
|
interface Ethernet1/2
|
|
description // Connected to leaf-2
|
|
no switchport
|
|
ip address 10.1.2.1/30
|
|
ip router ospf 1 area 0.0.0.0
|
|
no shutdown
|
|
{% endif %}
|