Skip to content

Commit a0192b6

Browse files
authored
chore: raw JSON -> text component format wiki link (#672)
Took 13 minutes
1 parent dd253c2 commit a0192b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/content/docs/adventure/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In vanilla Minecraft, some places where components are rendered have parent styl
1616

1717
- Test on a vanilla client, without any mods or resource packs. Modded clients (such as Badlion), client mods, and even resource packs can break many elements of the modern JSON chat format and mess with incoming chat packets in ways that cause a myriad of issues.
1818
- Try without other plugins/mods. If another plugin/mod is modifying outgoing packets or formatting chat messages, this could cause a loss of formatting in the messages you send. Try without any other plugins to see if any are causing issues.
19-
- For RGB colors, test on a client of at least version *1.16*. Mojang added RGB support in this version. The JSON message format has evolved over time and has had many new additions since its introduction many, many years ago. For a full version history, see [the Minecraft wiki](https://minecraft.wiki/w/Raw_JSON_text_format).
19+
- For RGB colors, test on a client of at least version *1.16*. Mojang added RGB support in this version. The JSON message format has evolved over time and has had many new additions since its introduction many, many years ago. For a full version history, see [the Minecraft wiki](https://minecraft.wiki/w/Text_component_format).
2020

2121
## How can I support both MiniMessage and legacy (§-code) formatting?
2222

src/content/docs/adventure/minimessage/format.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ the opening quote character can be escaped (`'` or `"`). In either place, the es
5454
In locations where escaping is not supported, the literal escape character will be passed through. In locations where escaping *is* supported but a literal escape character is desired, the escape character can itself be escaped to produce a `\`.
5555

5656
The default tags try to represent components in a manner compatible with Vanilla, but simplifying some elements. It might be helpful to
57-
use [the Minecraft wiki](https://minecraft.wiki/w/Raw_JSON_text_format) as a reference for the Vanilla component system, especially
57+
use [the Minecraft wiki](https://minecraft.wiki/w/Text_component_format) as a reference for the Vanilla component system, especially
5858
for things like the actions and values of click and hover events.
5959

6060
The [MiniMessage Web Viewer](https://webui.advntr.dev) allows testing MiniMessage text locally, without having to spin up a Minecraft instance.
@@ -205,7 +205,7 @@ Tag
205205

206206
Arguments
207207
* `_action_`, the type of click event, one of [this list](https://jd.advntr.dev/api/latest/net/kyori/adventure/text/event/ClickEvent.Action.html#enum.constant.summary)
208-
* `_value_`, the argument for that particular event, refer to [the minecraft wiki](https://minecraft.wiki/w/Raw_JSON_text_format)
208+
* `_value_`, the argument for that particular event, refer to [the minecraft wiki](https://minecraft.wiki/w/Text_component_format)
209209

210210
Examples
211211
```mm

src/content/docs/paper/dev/api/component-api/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ of this format.
145145

146146
:::note[In-Depth Documentation]
147147

148-
The JSON format is fully documented on the [Minecraft Wiki](https://minecraft.wiki/w/Raw_JSON_text_format).
148+
The JSON format is fully documented on the [Minecraft Wiki](https://minecraft.wiki/w/Text_component_format).
149149

150150
:::
151151

0 commit comments

Comments
 (0)