awesome.anubis
890 Bytes
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
/*
* Created by PyramIDE.
* User: フランスのトトロ aka (David RENÉ)
* Date: 23/02/2017
* Time: 21:43
* © David RENÉ
*/
read xlib/web/making_a_web_site.anubis
public type Font_Awesome:
awesome(
String code
)
.
public define HTML
to_HTML
(
Font_Awesome fa,
List(CoreAttrs) attrs,
String text
)=
since fa is awesome(code),
i([class("fa fa-"+code), attr("aria-hidden", "true")]+attrs, text)
.
public define HTML
to_HTML
(
Font_Awesome fa,
List(CoreAttrs) attrs
)=
to_HTML(fa, attrs, "")
.
public define HTML
to_HTML
(
Font_Awesome fa,
CoreAttrs attr
)=
to_HTML(fa, [attr], "")
.
public define HTML
to_HTML
(
Font_Awesome fa,
String text
)=
to_HTML(fa, [], text)
.
public define HTML
to_HTML
(
Font_Awesome fa
)=
to_HTML(fa, [], "")
.