This repository was archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
46 lines (46 loc) · 1.76 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
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<!-- Custom theme styles -->
<style>
.sidebar .sidebar-nav {
/* Menu lines more compact */
line-height: 1.2em;
/* Menu not stuck on left completly */
padding-left: 10px;
}
.content {
/* Reduce header blankline to win some read space */
padding-top: 0px;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<script>
window.$docsify = {
name: 'Standards and guidelines for Groupe PSA REST APIs',
logo: '_media/psa-logo.png height="75px"',
repo: 'https://github.com/GroupePSA/api-standards.git',
nameLink: 'https://github.com/GroupePSA/api-standards',
loadSidebar: true,
subMaxLevel: 2,
themeColor: '#4cb2de',
plugins: [
EditOnGithubPlugin.create('https://github.com/GroupePSA/api-standards/tree/master/', null, null)
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-copy-code@2"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@latest/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@latest/components/prism-log.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@latest/components/prism-properties.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@latest/components/prism-yaml.min.js"></script>
</body>
</html>