Skip to content

Macro Syntax Error

File: language\reference\block-elements\flex.en.md

Line 5 in Markdown file: unexpected char '`' at 37

The `flex` element supports the following attributes:

| Attribute | Type | Default | Description |
| :- | :- | :- | :- |
| `aligncontent` | `FlexItemAlignment` | `stretch`| The alignment of flex items along the cross axis when there is extra space in the cross axis as a result of wrapping. |
| `alignitems` | `FlexItemSimpleAlignment` | `stretch`| The alignment of the flex items along the cross axis. |
| `columngap` | `LengthPercentage` | `0`| The size of the gap between flex columns as length percentage value. |
| `flexdirection` | `FlexDirection` | `row`| The direction flex items are placed in the flex container. This is the main axis of the container. |
| `flexwrap` | `FlexWrap` | `nowrap`| Defines whether the flex items are forced in a single line or wrapped into multiple lines if neccessary. |
| `justifycontent` | `FlexItemAlignment` | `stretch`| The alignment of the flex items along the main axis. |
| `maxheight` | `LengthPercentage | None` | `none`| Sets a maximum height of this flex container as length percentage value. The special value none is the default value and means that there should be no upper bound on the height of the flex container. |
| `minheight` | `LengthPercentage | Auto` | `auto`| Sets a minimum height of this flex container as length percentage value. The special value auto is the default value and means that the application will calculate and select a minimum height. |
| `name` | `Name` | -| Name of this element. Must be unique among all element names in this course variant. |
| `rowgap` | `LengthPercentage` | `0`| The size of the gap between rows as length percentage value. |
| `tags` | `TokenList` | | Whitespace-separated list of tags of this element. |