-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (68 loc) · 3.43 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Primary Meta Tags -->
<title>xslt.info</title>
<meta name="title" content="xslt.info">
<meta name="description" content="Test and debug your XSLT 3.0 stylesheets.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://metatags.io/">
<meta property="og:title" content="xslt.info">
<meta property="og:description" content="Test and debug your XSLT 3.0 stylesheets.">
<meta property="og:image" content="https://xslt.info/preview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://metatags.io/">
<meta property="twitter:title" content="xslt.info">
<meta property="twitter:description" content="Test and debug your XSLT 3.0 stylesheets.">
<meta property="twitter:image" content="https://xslt.info/preview.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastify-js/1.12.0/toastify.min.css"
integrity="sha512-k+xZuzf4IaGQK9sSDjaNyrfwgxBfoF++7u6Q0ZVUs2rDczx9doNZkYXyyQbnJQcMR4o+IjvAcIj69hHxiOZEig=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ldloader@3.0.1/index.min.css"
integrity="sha256-tP+wsPFYcxaAOpft70fHafBaUGAe15T8zGyG5paIJvc=" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="ldld full light"></div>
<div class="parent">
<div class="header">
<p>xslt.info</p>
</div>
<div class="topleft section">
<p>XML</p>
<div id="xmlinput" class="editor"></div>
</div>
<div class="right section">
<p>XML OUTPUT</p>
<div id="xmloutput" class="editor"></div>
<button onclick="transform()">TRANSFORM</button>
</div>
<div class="bottomleft section">
<p>XSLT</p>
<div id="xsltinput" class="editor"></div>
</div>
<div class="footer">
<p>Made by João Fonsaka</p>
<p><a href="https://github.com/joaovitorbf/xslt.info">GitHub</a></p>
<p><a href="javascript:discord()">Discord</a></p>
</div>
</div>
<script src="saxon/SaxonJS2.js"></script>
<script src="https://cdn.jsdelivr.net/npm/xml-formatter@2.6.1/dist/browser/xml-formatter-singleton.js"
integrity="sha256-F8NNnGCweYs8mSYHUhyrslOdjCLH6S/UhDy4laGychU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.9.6/ace.js"
integrity="sha512-czfWedq9cnMibaqVP2Sw5Aw1PTTabHxMuTOkYkL15cbCYiatPIbxdV0zwhfBZKNODg0zFqmbz8f7rKmd6tfR/Q=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastify-js/1.12.0/toastify.min.js"
integrity="sha512-0Yc4Jv5wX4+mjDuLxmHFGqgDtMFAEBLpPq/0nPVmAOwHPMkYXiS1YVYWTcrVQztftk/32089DDTyrCJO8hBCZw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/npm/ldloader@3.0.1/index.min.js"
integrity="sha256-XTNeCDTuTuBa0A9FadJlwgaxzJhpj5FBchuKkU1Y1sE=" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>