Updated Home (markdown)

Henri Schubin 2023-12-31 17:13:17 +02:00
parent dee71b7e54
commit a29f39d4c6

@ -111,9 +111,10 @@ Some points of how the placeholder service works,
- hooks directly into external plugins such as PlaceholderAPI
- allows declaring placeholders directly in types, example:
```java
@PlaceholderPrefix("player_")
public interface Player {
@Placeholder("player_name")
@Placeholder("name") // This will be %player_name% due to the PlaceholderPrefix
String username();
...
```