Skip to content

Commit f6b0b82

Browse files
committed
Prepare for docs release
1 parent 5fece22 commit f6b0b82

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Njol's Skript. It is supported for **Spigot** (not Bukkit) versions for
99
Minecraft 1.9-1.10. Other versions might work, but no guarantees.
1010

1111
## Documentation
12-
We have new Skript documentation coming soon. It is not up yet, but in few days
13-
or weeks, it will!
12+
Documentation is available [here](http://bensku.github.io/Skript/) for latest
13+
version of Skript.
1414

1515
## Reporting Issues
1616
You should use Github [issue tracker](https://github.com/bensku/Skript/issues)

docs/functions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ <h1>Functions</h1>
22

33
<p class="box">
44
These functions are defined by Skript. You may also create your own functions!
5-
Tutorial for doing so is planned, right now you need to seek it elsewhere.
5+
Tutorial for doing so is planned, but right now you need to seek it elsewhere.
66
</p>
77

88
${generate functions desc_full.html}

src/main/java/ch/njol/skript/doc/HTMLGenerator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ public void generate() {
140140
}
141141
} else if (genType.equals("classes")) {
142142
for (ClassInfo<?> info : Classes.getClassInfos()) {
143+
if (ClassInfo.NO_DOC.equals(info.getDocName()))
144+
continue;
143145
assert info != null;
144146
generated += generateClass(descTemp, info);
145147
}

0 commit comments

Comments
 (0)