Patterns should be applied in order that they are listed in, from left to right.
In this case, [text](@pattern1, @pattern2, https://example.com) is equivalent to [text](italic, underlined, link="https://example.com"), as the bold modifier in @pattern1 is overridden by @pattern2.
The addition of patterns would allow for de-duplication of modifier blocks. An example of their usage is as follows:
In this case,
[modified text](@pattern_name)
is equivalent to[modified text](color=#000000, bold, hover_text=<Basically /clone>)
.However, merging patterns and other modifiers is valid:
Patterns should be applied in order that they are listed in, from left to right. In this case,
[text](@pattern1, @pattern2, https://example.com)
is equivalent to[text](italic, underlined, link="https://example.com")
, as thebold
modifier in@pattern1
is overridden by@pattern2
.