-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
43 lines (36 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" type="text/css" media="screen" href="main.css" /> -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="main.js"></script>
<link href="./style.css" " type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="./styles/monokai-sublime.css">
<script src="./highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<header>
<h1>Object Mapper for Swift 4</h1>
</header>
<section class="section-1">
<input type="text" id="first-class" name="first-class" value="Main"/>
<textarea id="jsontoparse" rows="20" cols="100"></textarea>
</section>
<section class="section-1">
<button type="button" id="transform">Preview</button>
<button type="button" id="download">Download File</button>
<pre id="print-square" style="display: none;"></pre>
</section>
<section class="section-2">
<pre><code class="swift" id="print-mapped" rows="50" cols="100">
</code>
</pre>
</section>
</body>
</html>