2个版本
0.1.1 | 2019年10月3日 |
---|---|
0.1.0 | 2019年10月3日 |
174 在 邮件
148 每月下载量
7KB
151 行
RFC 2047编码器
提供RFC 2047编码单词的编码器。
use rfc2047::rfc2047_encode;
#[test]
fn test_encode_rfc2047() {
assert_eq!(
"Foo =?utf-8?q?a=C3=A4b?= =?utf-8?q?_=C3=A4?= bar",
rfc2047_encode("Foo aäb ä bar"),
);
}
单词作为整体进行编码或不编码。仅使用quoted-printable编码。