Oliver Simmons oliversimmo at gmail.com
Mon Feb 22 10:51:43 GMT 2021
- - - - - - - - - - - - - - - - - - -
On Mon, 22 Feb 2021 at 10:31, Petite Abeille <petite.abeille at gmail.com> wrote:
text/parameters
The ABNF [RFC5234] grammar for "text/parameters" content is:
file = *((parameter / parameter-value) CRLF)
parameter = 1*visible-except-colon
parameter-value = parameter *WSP ":" value
visible-except-colon = %x21-39 / %x3B-7E ; VCHAR - ":"
value = *(TEXT-UTF8char / WSP)
TEXT-UTF8char = <as defined in Section 20.1>
WSP = <See RFC 5234> ; Space or HTAB
VCHAR = <See RFC 5234>
CRLF = <See RFC 5234>
https://tools.ietf.org/html/rfc7826#page-305
That's perfect! It's pretty much what I was describing, following anexisting spec would be great! :)