The generated .rst for attribute-sets currently uses a sub-sub-heading for each individual attribute. Change this to use a bullet list the attributes in an attribute-set. It is more compact and readable. Signed-off-by: Donald Hunter <donald.hunter@xxxxxxxxx> --- tools/net/ynl/ynl-gen-rst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/net/ynl/ynl-gen-rst.py b/tools/net/ynl/ynl-gen-rst.py index b6292109e236..a1d046c60512 100755 --- a/tools/net/ynl/ynl-gen-rst.py +++ b/tools/net/ynl/ynl-gen-rst.py @@ -240,7 +240,7 @@ def parse_attr_sets(entries: List[Dict[str, Any]]) -> str: # Add the attribute type in the same line attr_line += f" ({inline(type_)})" - lines.append(rst_subsubsection(attr_line)) + lines.append(rst_bullet(attr_line)) for k in attr.keys(): if k in preprocessed + ignored: -- 2.42.0