-
Notifications
You must be signed in to change notification settings - Fork 28
/
gfm.less
64 lines (52 loc) · 963 Bytes
/
gfm.less
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
52
53
54
55
56
57
58
59
60
61
62
63
64
// GF MarkDown
.syntax--gfm {
.uno-1();
.punctuation-mixin();
.syntax--link {
.uno-2();
}
&.syntax--markup {
.uno-2();
&.syntax--bold { .syntax--bold(); }
&.syntax--italic { .syntax--italic(); }
&.syntax--strike {
.uno-5();
text-decoration: line-through;
}
&.syntax--raw {
.duo-1(); // Fenced code blocks
}
&.syntax--raw .syntax--support,
&.syntax--code .syntax--support {
.uno-4(); // Fenced code blocks
}
}
&.syntax--comment {
.uno-4();
&.syntax--quote {
.uno-2();
}
}
&.syntax--table {
.duo-1();
.syntax--border,
.syntax--pipe {
.uno-5();
}
}
&.syntax--variable,
&.syntax--entity {
.duo-1();
}
&.syntax--support { .duo-2(); }
&.syntax--heading-1,
&.syntax--heading-2,
&.syntax--heading-3 {
.duo-1();
}
&.syntax--heading-4,
&.syntax--heading-5,
&.syntax--heading-6 {
.duo-2();
}
}