awesome.anubis
1.58 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* 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_Off_Form
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_Off_Form
to_HTML
(
Font_Awesome fa,
List(CoreAttrs) attrs
)=
to_HTML(fa, attrs, "")
.
public define HTML_Off_Form
to_HTML
(
Font_Awesome fa,
CoreAttrs attr
)=
to_HTML(fa, [attr], "")
.
public define HTML_Off_Form
to_HTML
(
Font_Awesome fa,
String text
)=
to_HTML(fa, [], text)
.
public define HTML_Off_Form
to_HTML
(
Font_Awesome fa
)=
to_HTML(fa, [], "")
.
public define HTML_In_Form
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_In_Form
to_HTML
(
Font_Awesome fa,
List(CoreAttrs) attrs
)=
to_HTML(fa, attrs, "")
.
public define HTML_In_Form
to_HTML
(
Font_Awesome fa,
CoreAttrs attr
)=
to_HTML(fa, [attr], "")
.
public define HTML_In_Form
to_HTML
(
Font_Awesome fa,
String text
)=
to_HTML(fa, [], text)
.
public define HTML_In_Form
to_HTML
(
Font_Awesome fa
)=
to_HTML(fa, [], "")
.