1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-27 07:02:06 +03:00
Files
svgo/docs/04-plugins/removeEmptyText.mdx
2024-06-16 00:10:42 +01:00

25 lines
934 B
Plaintext

---
title: removeEmptyText
svgo:
pluginId: removeEmptyText
defaultPlugin: true
parameters:
text:
description: If to remove empty [`<text>`](https://developer.mozilla.org/docs/Web/SVG/Element/text) elements.
default: true
tspan:
description: If to remove empty [`<tspan>`](https://developer.mozilla.org/docs/Web/SVG/Element/tspan) elements.
default: true
tref:
description: If to remove empty [`<tref>`](https://developer.mozilla.org/docs/Web/SVG/Element/tref) elements.
default: true
---
Removes empty [`<text>`](https://developer.mozilla.org/docs/Web/SVG/Element/text) and [`<tspan>`](https://developer.mozilla.org/docs/Web/SVG/Element/tspan) elements, and [`<tref>`](https://developer.mozilla.org/docs/Web/SVG/Element/tref) elements that don't reference another node in the document.
:::info
No browsers supports `<tref>`, so it's best to avoid that element regardless.
:::