-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexample-user-data.js
26 lines (26 loc) · 1.07 KB
/
example-user-data.js
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
window.userdata = {
"groups": [
{
"name": "Sample Waypoints",
"default": true,
"markers": [
{
"coords": [0,0],
"dimension": "DIM0",
"name": "2b2t Spawn",
"icon": "red",
"data": [
"<a href=\"https://upload.wikimedia.org/wikipedia/commons/9/9c/IronException_2b2t_Spawn_Render_June_2019.png\"><img style=\"width: 100%\" src=\"images/iron-spawn.png\" /></a>",
"<i>2b2t Spawn Render by IronException</i>",
"<b>Visited:</b> 2021-01-01",
"<b>Coords:</b> 0,0",
"<b>WDL:</b> example-spawn-wdl.zip",
"You can put whatever HTML you want here, so you can have any information, not just predefined stuff!",
"This includes things like images, <a href=\"https://youtu.be/yPxJnvSZrU0?t=36\">links</a> and <span style=\"font-family: 'Comic Sans MS'; color: red\">styling</span>.",
"<b>⚠ This also means that JavaScript code can be added. DO NOT trust user-data.js files from other people.</b>"
]
}
]
}
]
}