General Optimizations for Rich Text?

So Recently I have been working with the Rich Text Markup more often because I found it better to use than creating a bunch of TextLabels, however I’m wondering on how I can make improvements and If there is some general advice on what I can do for this.


For example, I noticed many people will create multiple <font> tags with their own properties:

<font color="#ff0000"><font size="75">This is an example hehe</font></font>

When in reality, all thats needed is a single <font> tag, and seperation of the property:

<font color="#ff0000" size="75">This is an example hehe</font>

Very small, but it makes it easier to write down.


While this seems like a very micro-optimization dont worry about it that much on my part, I began to interest me on how much I can shorten the string and get the same result, and what else I can shorten.

1 Like