module QuotedPrintable

Extended Modules

Defined in:

quoted_printable.cr

Constant Summary

LINE_BREAK = "\r\n"
MAX_LENGTH = 76
SOFT_LINE_BREAK = "=\r\n"
VERSION = "0.1.3"

Instance Method Summary

Instance Method Detail

def decode(data : String, io : IO) #

[View source]
def decode(data : String) : Bytes #

[View source]
def decode_string(data : String, encoding : String = "UTF-8", invalid : Symbol | Nil = nil, line_break : String | Nil = nil) : String #

[View source]
def encode(bytes : Enumerable(UInt8), io : IO) #

[View source]
def encode(string : String, io : IO) #

[View source]
def encode(data : String | Enumerable(UInt8)) #

[View source]