Skip to content
This repository was archived by the owner on Dec 13, 2024. It is now read-only.

Commit 4f235b5

Browse files
authored
Improve links & tooltips in root README (#4)
2 parents f341a3c + f160aa6 commit 4f235b5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,33 @@
1515

1616
| Preview | Name | Tutorial | Features | Language | Networking |
1717
| ------- | ---- | -------- | -------- | -------- | ---------- |
18-
| ![Preview](./godot/bomber/_media/preview_128.png) | [Bomber](./godot/bomber) | [Tutorial](https://rivet.gg/learn/godot/tutorials/crash-course) | β™ŸοΈπŸŒ | GDScript | High-Level Multiplayer |
18+
| [![Preview](./godot/bomber/_media/preview_128.png)](./godot/bomber/) | [Bomber](./godot/bomber) | [Tutorial](https://rivet.gg/learn/godot/tutorials/crash-course) | [β™ŸοΈ](https://rivet.gg/docs/matchmaker "β™ŸοΈ Matchmaker")[🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | GDScript | High-Level Multiplayer |
1919

2020

2121

2222
### Unity
2323

2424
| Preview | Name | Tutorial | Features | Language | Networking |
2525
| ------- | ---- | -------- | -------- | -------- | ---------- |
26-
| ![Preview](./unity/tanks-fishnet/_media/preview_128.png) | [Tanks](./unity/tanks-fishnet) | [Tutorial](https://rivet.gg/learn/unity/tutorials/fishnet/crash-course) | β™ŸοΈπŸŒ | C# | Fish-Networking |
26+
| [![Preview](./unity/tanks-fishnet/_media/preview_128.png)](./unity/tanks-fishnet/) | [Tanks](./unity/tanks-fishnet) | [Tutorial](https://rivet.gg/learn/unity/tutorials/fishnet/crash-course) | [β™ŸοΈ](https://rivet.gg/docs/matchmaker "β™ŸοΈ Matchmaker")[🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | C# | Fish-Networking |
2727

2828

2929

3030
### HTML5
3131

3232
| Preview | Name | Tutorial | Features | Language | Networking | Rendering |
3333
| ------- | ---- | -------- | -------- | -------- | ---------- | --------- |
34-
| | [Tanks](./html5/tanks-socketio-canvas) | [Tutorial](https://rivet.gg/learn/html5/tutorials/tanks-canvas-socketio) | β™ŸοΈπŸŒ | TypeScript | Socket.IO | Canvas |
35-
| | [Colyseus](./html5/colyseus) | | β™ŸοΈπŸŒ | TypeScript | Colyseus | |
36-
| ![Preview](./html5/webrtc/_media/preview_128.png) | [WebRTC](./html5/webrtc) | | 🌐 | TypeScript | WebRTC | |
34+
| | [Tanks](./html5/tanks-socketio-canvas) | [Tutorial](https://rivet.gg/learn/html5/tutorials/tanks-canvas-socketio) | [β™ŸοΈ](https://rivet.gg/docs/matchmaker "β™ŸοΈ Matchmaker")[🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | TypeScript | Socket.IO | Canvas |
35+
| | [Colyseus](./html5/colyseus) | | [β™ŸοΈ](https://rivet.gg/docs/matchmaker "β™ŸοΈ Matchmaker")[🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | TypeScript | Colyseus | |
36+
| [![Preview](./html5/webrtc/_media/preview_128.png)](./html5/webrtc/) | [WebRTC](./html5/webrtc) | | [🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | TypeScript | WebRTC | |
3737

3838

3939

4040
### Other
4141

4242
| Preview | Name | Tutorial | Features | Language | Networking | Rendering |
4343
| ------- | ---- | -------- | -------- | -------- | ---------- | --------- |
44-
| | [CLI WebSocket](./rust/cli-websocket) | | 🌐 | Rust | WebSocket | |
45-
| | [Core dump](./c/coredump) | | 🌐 | C | | |
44+
| | [CLI WebSocket](./rust/cli-websocket) | | [🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | Rust | WebSocket | |
45+
| | [Core dump](./c/coredump) | | [🌐](https://rivet.gg/docs/dynamic-servers "🌐 Dynamic Servers") | C | | |
4646

4747

β€Ž_internal/templater/src/example/tpl.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ impl super::Config {
9898
.meta
9999
.features
100100
.iter()
101-
.map(|x| x.emoji())
101+
.map(|x| format!("[{}]({} \"{}\")", x.emoji(), x.url(), x))
102102
.collect::<Vec<_>>()
103103
.join(""),
104104
})

β€Ž_internal/templater/tpl/root/README.md.teraβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
| ------- | ---- | -------- | -------- | -------- | ---------- |{% if rendering %} --------- |{% endif %}
1515
{% for ex in examples -%}
1616
{% if ex.engine_id == engine -%}
17-
| {% if ex.has_preview %}![Preview]({{ ex.path }}/_media/preview_128.png){% endif %} | [{{ ex.config.display.title }}]({{ ex.path }}) | {% if ex.config.display.tutorial_url %}[Tutorial]({{ ex.config.display.tutorial_url }}){% endif %} | {{ ex.features }} | {{ ex.language }} | {{ex.networking }} |{% if rendering %} {{ ex.rendering }} |{% endif %}
17+
| {% if ex.has_preview %}[![Preview]({{ ex.path }}/_media/preview_128.png)]({{ ex.path }}/){% endif %} | [{{ ex.config.display.title }}]({{ ex.path }}) | {% if ex.config.display.tutorial_url %}[Tutorial]({{ ex.config.display.tutorial_url }}){% endif %} | {{ ex.features }} | {{ ex.language }} | {{ex.networking }} |{% if rendering %} {{ ex.rendering }} |{% endif %}
1818
{% endif -%}
1919
{% endfor %}
2020
{% endmacro engine_table %}

0 commit comments

Comments
Β (0)