forked from microsoft/presidio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-docs.html
More file actions
49 lines (48 loc) · 1.44 KB
/
api-docs.html
File metadata and controls
49 lines (48 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>ReDoc</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="redoc-container"></div>
<script src="https://unpkg.com/redoc@latest/bundles/redoc.standalone.js"></script>
<script type="text/javascript">
(function() {
Redoc.init(
"./api-docs.yml",
{
"untrustedSpec": true,
"theme": {
"colors": {
"primary": {
"main": "rgba(69, 69, 98, 1)"
}
},
"typography": {
"fontSize": "16px",
"headings":{
"fontFamily": "Roboto",
"fontWeight": "400",
"lineHeight": '2em'
},
"fontFamily": "Roboto"
},
"rightPanel": {
"backgroundColor": "rgba(84, 109, 120, 1)"
}
}
},
document.getElementById('redoc-container'));
})();
</script>
</body>
</html>