-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmarkdown.code-snippets
89 lines (89 loc) · 2.79 KB
/
markdown.code-snippets
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
{
"Callout": {
"prefix": "@callout",
"description": "Add a callout to highlight information",
"body": [
"<Callout type=\"${1|info,note,tip,seealso,important,warning|}\" ${2:title=\"${3:An optional title}\"}>",
"",
"${0:${TM_SELECTED_TEXT}}",
"",
"</Callout>"
]
},
"Accordion": {
"prefix": "@accordion",
"description": "Insert an accordion (dropdown)",
"body": [
"<Accordion title=\"${1:Accordion title}\" ${2:badge=\"${3:Optional badge title}\"}>",
"",
"${0:${TM_SELECTED_TEXT}}",
"",
"</Accordion>"
]
},
"Tabs": {
"prefix": "@tabs",
"description": "Insert a tab group",
"body": [
"<Tabs>",
"<Tab title=\"${1:The tab title}\" ${2:sync=\"${3:An optional sync label}\"} ${4:icon=\"${5:An optional icon}\"}>",
"",
"${6:Content}",
"",
"</Tab>",
"<Tab title=\"${7:The tab title}\" ${8:sync=\"${9:An optional sync label}\"} ${10:icon=\"${11:An optional icon}\"}>",
"",
"${0:Content}",
"",
"</Tab>",
"</Tabs>"
]
},
"MinorVersion": {
"prefix": "@minorversion",
"description": "Add a minor version annotation indicating the status of a feature.",
"body": [
"<MinorVersion ${1|added,changed,removed|}=\"${2:The minor version (e.g. 'v4.38.0'}\">",
"",
"${0:${TM_SELECTED_TEXT}}",
"",
"</MinorVersion>"
]
},
"VersionPlaceholder": {
"prefix": "@versionplaceholder",
"description": "Insert a version placeholder for use in code blocks. These are overwritten at build time.",
"body": "$${1|ANDROID,IOS,UNITY,FLUTTER,REACT_NATIVE,WINDOWS,WEB|}_VERSION"
},
"ListColumns": {
"prefix": "@listcolumns",
"description": "Insert a series of lists separated by --- to create columns.",
"body": [
"<ListColumns>",
"",
"- ${1:First list item}",
"- ${2:Second list item}",
"- ${3:Third list item}",
"",
"---",
"",
"- ${4:Fourth list item}",
"- ${5:Fifth list item}",
"- ${0:Sixth list item}",
"",
"</ListColumns>"
]
},
"minSDKVersion": {
"prefix": "@minsdkversion",
"description": "Insert a phrase specifying the minimum SDK versions required.",
"body": [
"You need to set up the following Adjust SDK versions for your app:",
"",
"- ${1:iOS v4.25.0 or later}",
"- ${2:Android v4.26.0 or later}",
"",
"Your developer can confirm you are successfully sending the required parameters to Adjust by checking the SDK verbose logs to see that these values are present."
]
}
}