-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.ham
51 lines (47 loc) · 1.21 KB
/
example.ham
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* This is a div element with:
* - class example
* - id root
* - attribute data-test and the value wow
*/
.example#root[data-test="wow"] {
// Comments (Invisible for HTML)
//- Comments (Visible for HTML)
/*
* or multiline comments
*/
/*-
* or multiline comments targeted for HTML
*/
.text-container#text-and-brackets-example {
// With K&R style brackets
p {
some "quoted" `something` text
}
// Or with Allman style brackets
p
{
some "quoted" `something` ${evaluationVars} and more text
//- Also comments don't intersect concatenation they are placed on top of
//- concatenated strings
and a inline element $(span { inline text }) wow
}
}
.class-a-a { Whos little text is in the same line as the selector ? }
.class-a-b {
And another $(.important { feature })
/*
* In case we parse variables to the parser we can access them and have
* simple control structures like if/else/for/while/set
*/
@if(myVar) { // or @if(myVar === true)
.class-a-b-a {
Also some deeper nesting with an if
}
}
@else {
.class-a-b-a {
Also some deeper nesting with an else
}
}
}
}