Description
We are currently concatenating lists in descriptions with spaces and generate a single Paragraph.
|
description = details["description"] if "description" in details else "" |
|
details["display_description"] = ( |
|
( |
|
description |
|
if isinstance(description, str) |
|
else (" ").join(description) |
|
) |
|
.replace("\n", " ") |
|
.strip() |
The Specification format however states
This can be a single string or a list of strings. In case this is a list of strings, every list element is a new paragraph.
We should adapt to this.
Additional information
No response
Description
We are currently concatenating lists in descriptions with spaces and generate a single Paragraph.
Automated-Ansible-Role-Documentation/aar_doc/core.py
Lines 181 to 189 in 346e08d
The Specification format however states
We should adapt to this.
Additional information
No response