Skip to content

Commit c523df3

Browse files
committed
docs: fix wiki links
1 parent 9677fcd commit c523df3

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

docs/SA-Wiki/Cloud-Requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Then, go to the Scratch website, create a new project and upload the project fil
1212

1313
**How to use with Scratch:**
1414

15-
Copy this code to your Python editor. [How to get your session id](../Get-your-session-id)
15+
Copy this code to your Python editor. [How to get your session id](Get-your-session-id.md)
1616

1717
```py
1818
import scratchattach as sa

docs/SA-Wiki/Documentation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ session = sa.login("username", "password") #Returns a sa.Session object
4545

4646
**Logging in with a session id:**
4747

48-
*You can get your session id from your browser's cookies. [More information](https://github.com/TimMcCool/scratchattach/wiki/Get-your-session-id)*
48+
*You can get your session id from your browser's cookies. [More information](Get-your-session-id.md)*
4949

5050
```python
5151
session = sa.login_by_id("session", username="username") #Returns a sa.Session object. The username field is case sensitive and optional (you only need to set it when you're on replit)
@@ -137,7 +137,7 @@ cloud.disconnect()
137137
logs = cloud.logs() # returns the clouddata logs as list of sa.CloudActivity objects
138138
```
139139

140-
[**Fully customized clouds (advanced)**](https://github.com/TimMcCool/scratchattach/wiki/Documentation#fully-customized-clouds)
140+
[**Fully customized clouds (advanced)**](Documentation.md#fully-customized-clouds)
141141

142142
## sa.CloudActivity class
143143

@@ -251,7 +251,7 @@ Scratchattach provides a Cloud Requests Framework (inspired by discord.py) that
251251

252252
*This makes it possible to access data like message counts, user stats and more from Scratch projects! Uses cloud variables to transmit data.*
253253

254-
**[Click here to go to Cloud Requests documentation](https://github.com/TimMcCool/scratchattach/wiki/Cloud-Requests)**
254+
**[Click here to go to Cloud Requests documentation](Cloud-Requests.md)**
255255

256256
If you want to access external information in Scratch projects or store data on an external database, scratchattach's Cloud Requests are ideal for your project:
257257
- Similar to cloud events, but send back data to the project
@@ -264,7 +264,7 @@ Scratchattach also provides a Cloud Storage Framework that makes it easy to stor
264264

265265
*This makes it possible to connect a database to your Scratch project!*
266266

267-
**[Click here to go to Cloud Storage documentation](https://github.com/TimMcCool/scratchattach/wiki/Cloud-Storage)**
267+
**[Click here to go to Cloud Storage documentation](Cloud-Storage.md)**
268268

269269
If you need a simple key-value storage for storing highscores or user data, scratchattach's Cloud Storages are ideal for your project.
270270

@@ -443,7 +443,7 @@ events.stop()
443443

444444
Scratchattach provides a filterbot framework that can be used to automatically delete spam comments. You can either use pre-made filter profiles (like *f4f filter* or *advertising filter*) or set up your own, custom filter rules. (Based on Message Events)
445445

446-
**[Click here to go to Filterbot documentation](https://github.com/TimMcCool/scratchattach/wiki/Filterbot)**
446+
**[Click here to go to Filterbot documentation](Filterbot.md)**
447447

448448
# Projects
449449

docs/SA-Wiki/index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,29 @@ This library can set cloud variables, follow Scratchers, post comments and do so
1818

1919
# Documentation
2020

21-
- **[Documentation](https://github.com/TimMcCool/scratchattach/wiki/Documentation)**
21+
- **[Documentation](Documentation.md)**
2222

23-
- [Cloud Variables](https://github.com/TimMcCool/scratchattach/wiki/Documentation#cloud-variables)
24-
- [Cloud Requests](https://github.com/TimMcCool/scratchattach/wiki/Cloud-Requests)
25-
- [Cloud Storage](https://github.com/TimMcCool/scratchattach/wiki/Cloud-Storage)
26-
- [Filterbot](https://github.com/TimMcCool/scratchattach/wiki/Filterbot)
27-
- [Self-hosting a TW cloud websocket](https://github.com/TimMcCool/scratchattach/wiki/Documentation#hosting-a-cloud-server)
23+
- [Cloud Variables](Documentation.md#cloud-variables)
24+
- [Cloud Requests](Cloud-Requests.md)
25+
- [Cloud Storage](Cloud-Storage.md)
26+
- [Filterbot](Filterbot.md)
27+
- [Self-hosting a TW cloud websocket](Documentation.md#hosting-a-cloud-server)
2828

2929
# Helpful resources
3030

31-
- [Get your session id](https://github.com/TimMcCool/scratchattach/wiki/Get-your-session-id)
31+
- [Get your session id](Get-your-session-id.md)
3232

33-
- [Examples](https://github.com/TimMcCool/scratchattach/wiki/Examples)
34-
- [Hosting](https://github.com/TimMcCool/scratchattach/wiki/Hosting)
33+
- [Examples](Examples.md)
34+
- [Hosting](Hosting.md)
3535

36-
- [Migrating to v2](https://github.com/TimMcCool/scratchattach/wiki/Migrating-to-v2)
36+
- [Migrating to v2](Migrating-to-v2.md)
3737

3838
Report bugs by opening an issue on this repository. If you need help or guideance, leave a comment in the [official forum topic](https://scratch.mit.edu/discuss/topic/603418/
3939
). Projects made using scratchattach can be added to [this Scratch studio](https://scratch.mit.edu/studios/31478892/).
4040

4141
# Helpful for contributors
4242

43-
- **[Structure of the library](https://github.com/TimMcCool/scratchattach/wiki/Structure-of-the-library)**
43+
- **[Structure of the library](Structure-of-the-library.md)**
4444

4545
- [Extended documentation (WIP)](https://scratchattach.readthedocs.io/en/latest/)
4646

@@ -61,7 +61,7 @@ cloud = session.connect_cloud("project_id")
6161
cloud.set_var("variable", value)
6262
```
6363

64-
**[More examples](https://github.com/TimMcCool/scratchattach/wiki/Examples)**
64+
**[More examples](Examples.md)**
6565

6666
# Getting started
6767

@@ -89,7 +89,7 @@ session = sa.login("username", "password")
8989

9090
`login()` returns a `Session` object that saves your login and can be used to connect objects like users, projects, clouds etc.
9191

92-
**Logging in with a sessionId:** *You can get your session id from your browser's cookies. [More information](https://github.com/TimMcCool/scratchattach/wiki/Get-your-session-id)*
92+
**Logging in with a sessionId:** *You can get your session id from your browser's cookies. [More information](Get-your-session-id.md)*
9393
```python
9494
import scratchattach as sa
9595

@@ -128,4 +128,4 @@ project.love()
128128
project.post_comment('Great project!')
129129
```
130130

131-
**All scratchattach features are documented in the [documentation](https://github.com/TimMcCool/scratchattach/wiki/Documentation).**
131+
**All scratchattach features are documented in the [documentation](Documentation.md).**

0 commit comments

Comments
 (0)