The infraction message should never contain quotes due to the way it is displayed:
The way it's supposed to be displayed:
The issue happens when the infraction message contains " or ' as this will result in bad color formatting in this codeblock.
Therefore we should either edit all of the quotes to be prepended with \ therefore ignoring that issue, although this might be confusing since the reason will be different from what was intended, or we should sanitize the message so the infraction message can't contain such characters.
The infraction message should never contain quotes due to the way it is displayed:
The way it's supposed to be displayed:
The issue happens when the infraction message contains
"
or'
as this will result in bad color formatting in this codeblock.Therefore we should either edit all of the quotes to be prepended with
\
therefore ignoring that issue, although this might be confusing since the reason will be different from what was intended, or we should sanitize the message so the infraction message can't contain such characters.