Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed links for adventure javadocs #1007

Open
wants to merge 1 commit into
base: stable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@
"https://jd.spongepowered.org/plugin-spi/0.3.0/": ["org.spongepowered.plugin"],
"https://docs.oracle.com/javase/8/docs/api/": ["java"],
"https://guava.dev/releases/21.0/api/docs/": ["com.google.common"],
"https://jd.adventure.kyori.net/api/4.9.3/": ["net.kyori.adventure"],
"https://jd.advntr.dev/serializer-configurate4/4.9.3/": ["net.kyori.adventure.serializer.configurate4"],
"https://jd.advntr.dev/text-serializer-plain/4.9.3/":["net.kyori.adventure.text.serializer.plain"],
"https://jd.advntr.dev/text-serializer-legacy/4.9.3/":["net.kyori.adventure.text.serializer.legacy"],
"https://jd.advntr.dev/text-serializer-gson/4.9.3/":["net.kyori.adventure.text.serializer.gson"],
"https://jd.advntr.dev/api/4.9.3/": ["net.kyori.adventure"],
}

# -- sphinx-intersphinx Configuration -------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions source/plugin/text/representations/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Text Serializers
net.kyori.adventure.text.serializer.ComponentSerializer
net.kyori.adventure.text.serializer.gson.GsonComponentSerializer
net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer
net.kyori.adventure.text.serializer.plain.PlainComponentSerializer
net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer
net.kyori.adventure.serializer.configurate4.ConfigurateComponentSerializer
java.lang.String

Expand All @@ -18,7 +18,7 @@ Text Serializers
:javadoc:`ComponentSerializer`\ s provide a convenient way to serialize and de-serialize :javadoc:`Component` instances.
There are four applicable formats:

* Unformatted string - :javadoc:`PlainComponentSerializer`
* Unformatted string - :javadoc:`PlainTextComponentSerializer`
* Legacy ``&`` or ``§`` formatting - :javadoc:`LegacyComponentSerializer`
* Configurate nodes - :javadoc:`ConfigurateComponentSerializer`
* Minecraft JSON - :javadoc:`GsonComponentSerializer`
Expand Down
Loading