ContentTextEncoder

QQ频道内嵌格式编码器。

用于将源字符编码为转义后字符。

源字符转义后
& ->&
< ->&lt;
> ->&gt;

Functions

Link copied to clipboard
fun encode(text: String): String

text 中的源字符转义

Link copied to clipboard
fun <A : Appendable> encodeTo(text: String, appendable: A): A

text 中的源字符转义并将结果拼接至目标 appendable