-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathpages.js
More file actions
85 lines (61 loc) · 2.02 KB
/
pages.js
File metadata and controls
85 lines (61 loc) · 2.02 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
// duplicate the import line and change the variable name
// then use the path to the md file and then add ?raw
// ex:
// "./test.md?raw"
// "./particle-tools.md?raw"
import PageParticleTools from "./particle-tools.md?raw";
// Extra Control (unlisted)
import PageExtraControl from "./Extra-Control.md?raw";
// Free Servers
import PageFreeServers from "./FreeServers.md?raw";
// TurboWeather
import PageTurboWeather from "./TurboWeather.md?raw";
// Number Utilities
import PageNumberUtilities from "./NumberUtilities.md?raw";
// PenguinAI
import PagePenguinAI from "./PenguinAI.md?raw";
// AuthPenguin
import PageAuthPenguin from "./AuthPenguin.md?raw";
// YeetYourFiles
import PageYeetYourFiles from "./YeetYourFiles.md?raw";
import PageMoreTypes from "./More-Types.md?raw";
// Boxed Physics
import BoxedPhysics from "./BoxedPhysics.md?raw";
//Paint Utils
import PaintUtils from "./PaintUtils.md?raw";
// Resolution
import Resolution from "./Resolution.md?raw";
// Bitwise+
import PageBitsAndHexaDocs from "./bitsandhexa.md?raw";
// Project Interfaces
import ProjectInterfaces from "./ProjectInterfaces.md?raw";
export default {
// the key is the path to the docs page
// so you can do "sharkpool-particle-tools" for example
// you cant use / like "sharkpool/particle-tools" yet
"particle-tools": PageParticleTools,
"Extra-Control": PageExtraControl,
// FreeServers
"FreeServers": PageFreeServers,
//TurboWeather
"TurboWeather": PageTurboWeather,
// Number Utilities
"NumberUtilities": PageNumberUtilities,
// PenguinAI
"PenguinAI": PagePenguinAI,
// AuthPenguin
"AuthPenguin": PageAuthPenguin,
// YeetYourFiles
"YeetYourFiles": PageYeetYourFiles,
"more-types": PageMoreTypes,
// Boxed Physics
"BoxedPhysics": BoxedPhysics,
//Paint Utils
"PaintUtils": PaintUtils,
// Resolution
"Resolution": Resolution,
// Bitwise+
"bitsandhexa": PageBitsAndHexaDocs,
// Project Interfaces
"ProjectInterfaces": ProjectInterfaces
};