### Describe the gap in the current documentation The [“Admonition types”](https://myst-parser.readthedocs.io/en/latest/syntax/admonitions.html#admonition-types) section reads: >These admonitions take no argument, but may be specified with options: > > class: A **space**-separated list of CSS classes to add to the admonition. but, in the syntax just below, the value of this `class` option is a **comma**-separated list: ```md :::{tip} :class: myclass1,myclass2 :name: a-tip-reference Let's give readers a helpful hint! ::: [Reference to my tip](#a-tip-reference) ``` ### Describe the solution you'd like Make the wording and the syntax consistent.