kgt icon indicating copy to clipboard operation
kgt copied to clipboard

Implement # for ABNF

Open katef opened this issue 5 years ago • 0 comments

RFC7230 defines the extension # which provides lists:

     1#element => element *( OWS "," OWS element )
   and:
     #element => [ 1#element ]
   and for n >= 1 and m > 1:
     <n>#<m>element => element <n-1>*<m-1>( OWS "," OWS element )
...

     #element => [ ( "," / element ) *( OWS "," [ OWS element ] ) ]
     1#element => *( "," OWS ) element *( OWS "," [ OWS element ] )

https://tools.ietf.org/html/rfc7230#section-7

katef avatar Sep 04 '20 04:09 katef