Prism.languages.keyman = { comment: { pattern: /\bc .*/i, greedy: !0 }, string: { pattern: /"[^"\r\n]*"|'[^'\r\n]*'/, greedy: !0 }, 'virtual-key': { pattern: /\[\s*(?:(?:ALT|CAPS|CTRL|LALT|LCTRL|NCAPS|RALT|RCTRL|SHIFT)\s+)*(?:[TKU]_[\w?]+|[A-E]\d\d?|"[^"\r\n]*"|'[^'\r\n]*')\s*\]/i, greedy: !0, alias: 'function', }, 'header-keyword': { pattern: /&\w+/, alias: 'bold' }, 'header-statement': { pattern: /\b(?:bitmap|bitmaps|caps always off|caps on only|copyright|hotkey|language|layout|message|name|shift frees caps|version)\b/i, alias: 'bold', }, 'rule-keyword': { pattern: /\b(?:any|baselayout|beep|call|context|deadkey|dk|if|index|layer|notany|nul|outs|platform|reset|return|save|set|store|use)\b/i, alias: 'keyword', }, 'structural-keyword': { pattern: /\b(?:ansi|begin|group|match|nomatch|unicode|using keys)\b/i, alias: 'keyword', }, 'compile-target': { pattern: /\$(?:keyman|keymanonly|keymanweb|kmfl|weaver):/i, alias: 'property', }, number: /\b(?:U\+[\dA-F]+|d\d+|x[\da-f]+|\d+)\b/i, operator: /[+>\\$]|\.\./, punctuation: /[()=,]/, }; ue='switch'/> The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/form.tsx
blob: ef8dce44bd3acf56c60279aacfd49d904d901456 (plain)
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