We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca8e32 commit f3f9ae2Copy full SHA for f3f9ae2
doc.md
@@ -59,11 +59,17 @@ Becomes with UTF-8 and Quoted-printable encoding
59
60
Decodes a string from mime encoded word format (see also `encodeMimeWord`)
61
62
- mimelib.decodeMimeWord(str [, encoding][, charset]) -> String
+ mimelib.decodeMimeWord(str) -> String
63
64
- - `str` (String): String to be encoded
65
- - `encoding` (String): Encoding Q for quoted printable or B (def.) for base64
66
- - `charset` (String): Charset to be used, defaults to UTF-8
+ - `str` (String): String to be decoded
+
+For example
67
68
+ mimelib.decodeMimeWord("=?UTF-8?q?See_on_=C3=B5hin_test?=");
69
70
+will become
71
72
+ See on õhin test
73
74
## encodeQuotedPrintable
75
0 commit comments