forked from Exiled-Team/EXILED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddb2b52
commit 5c9b8f4
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Rich Text Reference | ||
This page contains a rich text reference for broadcasts and hints that can be used in EXILED plugins. | ||
|
||
## Rendering Tags | ||
Applies bold or italics to the broadcast or hint. | ||
|
||
### Examples | ||
- `<b>Text</b>` would produce <b>Text</b>. | ||
- `<i>Text</i>` would produce <i>Text</i>. | ||
|
||
## Color | ||
Applies a color to the broadcast or hint. | ||
|
||
### Examples | ||
- `<color=#FF0000>Text</color>` would produce <span style="color:#FF0000;">Text</span>. | ||
- `<color=green>Text</color>` would produce <span style="color:#008000;">Text</span>. | ||
See [this table](https://docs.unity3d.com/Packages/[email protected]/manual/StyledText.html#ColorNames) for a list of supported color names. | ||
|
||
## Size | ||
Changes the size of the broadcast or hint. | ||
|
||
### Examples | ||
- `<size=30>Text</size>` would increase the size of the text. | ||
- `<size=5>Text</size>` would reduce the size of the text. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.