Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ See the [Contributing Guide](contributing.md) for details.
* Fix quadratic-time regex backtracking in `ReferenceProcessor` when a link
reference definition has no URL, e.g. a line consisting only of `[id]:`
followed by many trailing spaces (#798).
* Document `attr_list` usage for `def_list` (#1123).

## [3.10.3] - 2026-07-30

Expand Down
17 changes: 17 additions & 0 deletions docs/extensions/attr_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,23 @@ A setext style header { #setext}
### A hash style header ### { #hash }
```

Similarly, when using with the [Definition List] Extension, an attribute list
must be on the same line as the term.

``` md-render
---
extensions: [attr_list, def_list]
---
Apple { #apple }
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.

Orange { #orange }
: The fruit of an evergreen tree of the genus Citrus.
```

[Definition List]: ./definition_lists.md

!!! seealso "See Also"

By default, the [Fenced Code Blocks](./fenced_code_blocks.md#attributes) extension includes limited support for
Expand Down
Loading