-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TRM Documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="TRM (Transport Request Manager) Documentation. Learn how to use TRM at its fulliest, implement your own registry, use the public registry and create your own CI/CD pipeline.">
<meta name="keywords" content="trm, doc, docs, documentation, howto, tutorial, abap, ci/cd, devops, abap package manager, registry, public registry, cli, opensource, package manager">
<meta name="author" content="Simone Gaffurini">
<meta property="og:title" content="TRM Documentation">
<meta property="og:type" content="website" />
<meta property="og:image" content="https://docs.trmregistry.com/_media/thumbnail.png"> <!-- 1200×630, 1MB -->
<meta property="og:url" content="https://trmregistry.com">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:description" content="TRM (Transport Request Manager) Documentation. Learn how to use TRM at its fulliest, implement your own registry, use the public registry and create your own CI/CD pipeline.">
<meta property="og:site_name" content="TRM Documentation">
<meta name="twitter:image:alt" content="TRM Documentation">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="icon" type="image/x-icon" href="https://trmregistry.com/favicon.ico">
<link rel="stylesheet" href="//unpkg.com/docsify-accordion/src/style.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<style>
:root {
--base-font-size: 14px;
--theme-color : #0084E0;
}
.resizeAppName, .app-name {
width: 50% !important;
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<script>
var repoUrl = 'https://github.com/RegestaItalia/trm-docs';
window.$docsify = {
logo: '/_media/logo.png',
loadFooter: true,
mergeNavbar: true,
loadSidebar: true,
loadNavbar: true,
subMaxLevel: 3,
name: 'TRM',
repo: repoUrl,
alias: {
'/client/_sidebar.md': 'https://raw.githubusercontent.com/RegestaItalia/trm-client/main/TABLE_OF_CONTENTS.md',
'/client/(.*)': 'https://raw.githubusercontent.com/RegestaItalia/trm-client/main/$1',
'/server/_sidebar.md': 'https://raw.githubusercontent.com/RegestaItalia/trm-server/main/TABLE_OF_CONTENTS.md',
'/server/(.*)': 'https://raw.githubusercontent.com/RegestaItalia/trm-server/main/$1',
'/registry/private/api/types/(.*)': 'https://raw.githubusercontent.com/RegestaItalia/trm-registry-types/main/docs/$1'
},
search: {
placeholder: 'Search',
},
plugins: [
EditOnGithubPlugin.create(repoUrl + '/blob/main/', null, '✏️ Edit on Github')
]
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/@alertbox/docsify-footer/dist/docsify-footer.min.js"></script>
<script src="//unpkg.com/docsify-accordion/src/index.js"></script>
<script src="./removeSection.js"></script>
</body>
</html>