aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/typst/if.typ
blob: 41bbaa4c1095864ab8e0ff7e953a692572a6e85b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if true {
	"this is one leve"
}

#set page(header: {
	if true {
		"this is internal on level"
	}
})

#if true {
	if false {
		"this is it"
	}
}