-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (89 loc) · 2.7 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
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
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div id="global-navigation">
<a href="index.html">Home</a>
<a href="classes.html">Classes</a>
<a href="conditions.html">Conditions</a>
<a href="effects.html">Effects</a>
<a href="events.html">Events</a>
<a href="expressions.html">Expressions</a>
</div>
<nav>
<p id="nav-title">Table of Contents</p>
<p><a href="#coolFeature">Cool Feature</a></p>
<p><a href="#newFeature">New Feature</a></p>
<p>Another feature with a really long name that doesnt fit the navigation bar</p>
</nav>
<div id="content">
<h1>Skript Documentation</h1>
<p>Hello, and welcome to the documentation of Skript. Over
here, we have the description part. Here is described how
a specific feature works.</p>
<p class="box">Watch out! This documentation is still very incomplete, if you have
the time and knowledge to improve it, please do so and edit it.</p>
<div id="coolFeature" class="item-title">Cool feature</div>
<div class="item-content">
<table>
<tr>
<td class="item-table-label">Pattern:</td>
<td><span class="skript-code-inline">some <a href=".">pattern</a></span></td>
</tr>
<tr>
<td class="item-table-label">Since:</td>
<td>1.5.2</td>
</tr>
</table>
<div class="item-description">
This is a very cool feature which allows you to do some really cool
stuff. Using it can make your server to the best one that ever existed
and bring you more than hundred new players per day!
</div>
<br>
<div class="item-examples">
Examples:
<div class="skript-code-block">
example number one
</div>
<br>
<div class="skript-code-block">
example number two
</div>
</div>
</div>
<div id="newFeature" class="item-title">New feature</div>
<div class="item-content">
<table>
<tr>
<td class="item-table-label">Pattern:</td>
<td>
<ul>
<li><span class="skript-code-inline">[a] new feature</span></li>
<li><span class="skript-code-inline">second pattern</span></li>
</ul>
</td>
</tr>
<tr>
<td class="item-table-label">Since:</td>
<td>3.5.1</td>
</tr>
</table>
<div class="item-description">
This is the newest feature of all the features! It makes it possible to add new features,
such as adding totally random descriptions to a pseudo documentation! Buy now! XXL! Low price!
<span class="skript-code-inline">inline code</span> blablabla
</div>
<br>
<div class="item-examples">
Examples:
<div class="skript-code-block">
new feature "throw paper through room"<br>
</div>
</div>
</div>
</div>
</body>
</html>