-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
33 lines (28 loc) · 1.01 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>v13 to v14 Converter</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<script src="index.js"></script>
<div class="warning">
<h3>WARNING</h3>
<p>This website can't convert your code <ins>fully</ins>. You must change somethings manually. <a
target="_blank"
href="https://deploy-preview-1011--discordjs-guide.netlify.app/additional-info/changes-in-v14.html">See
here</a> for changes in v14.</p>
</div>
<div class="warning">
<h3>NOTE</h3>
<p>Please report bugs <a target="_blank" href="https://github.com/Tolga1452/djs-v13-to-v14/issues/new">here</a>.
</p>
</div>
<div>
<textarea placeholder="Enter v13 Code" id="v13"></textarea>
<button class="convert" onclick="convert()">Convert</button>
<button class="copy" onclick="copy()">Copy</button>
<textarea disabled id="v14">Converted v14 Code</textarea>
</div>
</body>
</html>