diff --git a/docs/03-plugins/convert-colors.mdx b/docs/03-plugins/convert-colors.mdx
index 073fff753..ceb07c590 100644
--- a/docs/03-plugins/convert-colors.mdx
+++ b/docs/03-plugins/convert-colors.mdx
@@ -8,22 +8,22 @@ svgo:
description: If to convert all instances of a color to currentColor. This means to inherit the active foreground color, for example in HTML5 this would be the color property in CSS.
default: false
names2hex:
- description: If to convert color names to the hex equivilent.
+ description: If to convert color names to the hex equivalent.
default: true
rgb2hex:
- description: If to convert RGB colors to the hex equivilent, does ignores RGBA.
+ description: If to convert RGB colors to the hex equivalent, does ignores RGBA.
default: true
shorthex:
- description: If to convert 6 character hex colors to the 3 character equivilents where possible.
+ description: If to convert 6 character hex colors to the 3 character equivalent where possible.
default: true
shortname:
- description: If to convert hex colors to the color name, if the color name is shorter then the hex equivilent.
+ description: If to convert hex colors to the color name, if the color name is shorter then the hex equivalent.
default: true
---
-Converts color references to the shortest equivilent.
+Converts color references to the shortest equivalent.
-Colors can be represented in various notations, the following table showcases some equivilent colors:
+Colors can be represented in various notations, the following table showcases some equivalent colors:
| Name | rgb() | #rrggbb | #rgb |
|---|---|---|---|
diff --git a/docs/03-plugins/remove-xlink.mdx b/docs/03-plugins/remove-xlink.mdx
new file mode 100644
index 000000000..c4896b903
--- /dev/null
+++ b/docs/03-plugins/remove-xlink.mdx
@@ -0,0 +1,35 @@
+---
+title: Remove XLink
+svgo:
+ pluginId: removeXlink
+---
+
+Removes XLink namespace prefixes and converts references to XLink attributes to the native SVG equivalent.
+
+Performs the following operations:
+
+* Converts `*:href` to [`href`](https://developer.mozilla.org/docs/Web/SVG/Attribute/href).
+* Converts `*:show` to [`target`](https://developer.mozilla.org/docs/Web/SVG/Attribute/target).
+* Converts `*.title` to [`
`](https://developer.mozilla.org/docs/Web/SVG/Element/title).
+* Drops all other references to the XLink namespace.
+* Removes XLink namespace declarations.
+
+It's recommended to use this plugin if you intend to inline SVGs into an HTML document. HTML does not support explicit namespaces, so namespace prefixes are ignored by the browser anyway.
+
+:::danger
+
+This replaces XLink with attributes that are only defined in the SVGO 2 spec, and so breaks compatibility with the SVG 1.1.
+
+:::
+
+## Usage
+
+
+
+## Demo
+
+
+
+## Implementation
+
+* https://github.com/svg/svgo/blob/main/plugins/removeXlink.js
diff --git a/docs/03-plugins/remove-xmlns.mdx b/docs/03-plugins/remove-xmlns.mdx
index c648bea6f..78bac7595 100644
--- a/docs/03-plugins/remove-xmlns.mdx
+++ b/docs/03-plugins/remove-xmlns.mdx
@@ -6,7 +6,7 @@ svgo:
Removes the `xmlns` attribute from the top-most `