-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (91 loc) · 5.26 KB
/
index.html
File metadata and controls
112 lines (91 loc) · 5.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Unofficial KSP2 API Documentation </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Unofficial KSP2 API Documentation ">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="public/docfx.min.css">
<link rel="stylesheet" href="public/main.css">
<meta name="docfx:navrel" content="toc.html">
<meta name="docfx:tocrel" content="toc.html">
<meta name="docfx:docurl" content="https://github.com/schlosrat/schlosrat.github.io/blob/main/docfx_project/index.md/#L1">
</head>
<script type="module">
import options from './public/main.js'
import { init } from './public/docfx.min.js'
init(options)
</script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="index.html">
<img id="logo" class="svg" src="logo.svg" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" style="margin-top: -.65em; margin-left: -.8em" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<h1 id="unofficial-ksp2-api-documentation">Unofficial <strong>KSP2 API Documentation</strong></h1>
<h2 id="site-contents">Site Contents</h2>
<p>This site contains (unofficial) documentation for the Kerbal Space Program 2 Application Programming Interface. Although there is no source code here, you will find infomation useful to understanding what the game's internal methods and properties are, and how to access them.</p>
<p>This site is composed of two parts, Articles containing general information about modding KSP2 (how to use the API), and the API Documentation itself based on the 0.1.2 Early Access version of the game. These parts are available in the top bar of any page within this site, and from the Left Side Table of Contents menu of this page.</p>
<p>The Left Side Table of Contents menu for any page on this site includes a search field that filters the results displayed in the ToC based on what you're looking for. When in the Articles section, the ToC lists the articles available by title, and when in the API Documentation, the ToC shows all the API topic pages releavant to your surrent search terms. Each API topic page is hyperlinked to other relevant pages to aid site navigation.</p>
<h2 id="contributing-to-this-site">Contributing to This Site</h2>
<p>If you would like to contribute to this site, please fork the repo, modify your fork with any additions, modificatios, or updates you would like to see, and create pull requests back to the main branch.</p>
<h3 id="quick-start-notes">Quick Start Notes:</h3>
<ol>
<li>Refer to <a href="http://daringfireball.net/projects/markdown/">Markdown</a> for how to write markdown files.</li>
<li>Add images to the <em>images</em> folder if the file is referencing an image.</li>
</ol>
</article>
<div class="contribution d-print-none">
<a href="https://github.com/schlosrat/schlosrat.github.io/blob/main/docfx_project/index.md/#L1" class="edit-link">Edit this page</a>
</div>
<div class="next-article d-print-none border-top" id="nextArticle"></div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<footer class="border-top">
<div class="container-xxl">
<div class="flex-fill">
<span>Made with <a href="https://dotnet.github.io/docfx">docfx</a></span>
</div>
</div>
</footer>
</body>
</html>