## Feature Provide support for [Augmented Backus Naur Form [rfc5234]](https://tools.ietf.org/html/rfc5234) syntax in production list. The `grammar` option could have the following values: - `abnf-5234` for [rfc5234](https://tools.ietf.org/html/rfc5234) - `abnf`, alias for `abnf-5234` - `abnf-4234` for [rfc4234](https://tools.ietf.org/html/rfc4234) - `ebnf` for [ISO-14977](https://www.cl.cam.ac.uk/~mgk25/iso-14977.pdf) (when supported) - `sphinx` (default) ## Sample ``` rst .. productionlist:: :grammar: abnf-5234 UPPERCASE-ALPHA = %x41-5A ; A-Z LOWERCASE-ALPHA = %x61-7A ; a-z ```