-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmigration.html
More file actions
68 lines (66 loc) · 2.86 KB
/
Copy pathmigration.html
File metadata and controls
68 lines (66 loc) · 2.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Tiqets Supplier API Migration Guide" />
<meta name="author" content="Tiqets International BV"/>
<title>Tiqets Supplier API Migration Guide</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/css/foundation.min.css">
<link rel="stylesheet" type="text/css" href="./docs/css/styles-showdown.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<style>
h1, h2, h3, h4, h5, h6 {
font-family: Montserrat, sans-serif;
}
pre {
background-color: rgb(27, 33, 26);
border: 0;
padding: 0;
color: white;
border-radius: 2px;
}
.language-json {
font-family: Courier, monospace;
white-space: pre;
background-color: rgb(27, 33, 26);
color: white;
padding: 5px;
overflow-x: auto;
line-height: normal;
border-radius: 0px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div id="apimigration"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/showdown@2.1.0/dist/showdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.1/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
$( document ).ready(function() {
$.get(
"MIGRATION.md",
function( data ) {
var converter = new showdown.Converter({
'omitExtraWLInCodeBlocks': true,
'parseImgDimensions': true,
'simplifiedAutoLink': true,
'tables': true,
'literalMidWordUnderscores': true,
'strikethrough': true,
'smoothLivePreview': true,
'tasklists': true,
'ghCompatibleHeaderId': true,
'moreStyling': true,
});
var html = converter.makeHtml(data);
$("#apimigration").html(html);
}
)
});
</script>
</body>
</html>