From 87b978bf5a1d5d3b054b90f65774c2cccd0502d5 Mon Sep 17 00:00:00 2001
From: TinnyTerr <168141209+TinnyTerr@users.noreply.github.com>
Date: Sat, 25 Jan 2025 12:54:14 +0000
Subject: [PATCH 1/2] Fix typos
Signed-off-by: TinnyTerr <168141209+TinnyTerr@users.noreply.github.com>
---
docs/user/general.md | 2 +-
docs/user/mod-placeholders.md | 2 +-
docs/user/quicktext.md | 2 +-
docs/user/text-format.md | 6 +++---
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/user/general.md b/docs/user/general.md
index 6c381fa..ff3c14e 100644
--- a/docs/user/general.md
+++ b/docs/user/general.md
@@ -10,7 +10,7 @@ Inner part of placeholder can take shape of either `category:placeholder` or `ca
Additionally, some placeholders might have additional or required argument provided after first space. It's format
fully depend on mod providing it.
-You can check list of [build in placeholders here](/user/default-placeholders)
+You can check list of [built-in placeholders here](/user/default-placeholders)
and [placeholders from mods here](/user/mod-placeholders).
### List of mods supporting displaying Placeholder API's placeholders:
diff --git a/docs/user/mod-placeholders.md b/docs/user/mod-placeholders.md
index f16b691..8667f7d 100644
--- a/docs/user/mod-placeholders.md
+++ b/docs/user/mod-placeholders.md
@@ -1,6 +1,6 @@
# Mod placeholders list
-These placeholders are provided by other mods. Some are build in directly, while others require an addon.
+These placeholders are provided by other mods. Some are built-in directly, while others require an addon.
## List of placeholders
diff --git a/docs/user/quicktext.md b/docs/user/quicktext.md
index db124c2..eb083f6 100644
--- a/docs/user/quicktext.md
+++ b/docs/user/quicktext.md
@@ -13,7 +13,7 @@ used by bukkit and bukkit-based plugins.
## Structure
-Formatting is build on concept of tags, comparable to html.
+Formatting is built on concept of tags, comparable to HTML.
Most of them come in pairs of a starting (`#!xml `) and closing one (`#!xml ` for closing last tag of selected type or `#!xml </>` for last opened one.
While closing ones are technically optional, without them formatting will continue until end of
diff --git a/docs/user/text-format.md b/docs/user/text-format.md
index 7487aa2..0b13088 100644
--- a/docs/user/text-format.md
+++ b/docs/user/text-format.md
@@ -12,7 +12,7 @@ used by bukkit and bukkit-based plugins.
## Structure
-Formatting is build on concept of tags.
+Formatting is built on concept of tags.
??? warning inline end "Nesting Quotations"
@@ -120,10 +120,10 @@ Hover tag allows adding simple hover on text. It can be used to display addition
This tag should be closed.
-This tag allows you to change font to any build in one or one provided by resource pack.
+This tag allows you to change font to any built in one or one provided by resource pack.
You can use it by simply adding `#!xml `, where `[value]` is just a font name.
-Minecraft has 3 build-in fonts: `default`, `uniform` and `alt`.
+Minecraft has 3 built-in fonts: `default`, `uniform` and `alt`.
### Inserting
From b35de45975fba6ce1231aad2ece4b4fe98065c8e Mon Sep 17 00:00:00 2001
From: TinnyTerr <168141209+TinnyTerr@users.noreply.github.com>
Date: Sat, 25 Jan 2025 12:55:06 +0000
Subject: [PATCH 2/2] Fix quote wrapping. Now the ` is now visible
Signed-off-by: TinnyTerr <168141209+TinnyTerr@users.noreply.github.com>
---
docs/user/quicktext.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/user/quicktext.md b/docs/user/quicktext.md
index eb083f6..1128607 100644
--- a/docs/user/quicktext.md
+++ b/docs/user/quicktext.md
@@ -20,7 +20,7 @@ While closing ones are technically optional, without them formatting will contin
an input text or special `#!xml *>` tag. Some tags support arguments, which are defined
after the name in ordered inline fashion (for example `#!xml `) or as key-value pair (for example `#!xml `).
You are allowed to mix inline and key-value defined arguments (in `KEY:VALUE` format). In that case, any key defined argument will be skipped from being read as ordered one.
-Arguments spaces are required to be wrapped in a `'`, `"` or ``` symbols, with starting and ending symbols matching
+Arguments spaces are required to be wrapped in a `'`, `"` or ``` ` ``` symbols, with starting and ending symbols matching
(for example `#!xml Hello!'>...`, `#!xml Hello!'>...`).
If you want to use character used for wrapping, you can prefix it with backslash (for example as `\'`) or type it twice).