diff --git a/proxmox-router/src/cli/format.rs b/proxmox-router/src/cli/format.rs index 84936336..95448aa9 100644 --- a/proxmox-router/src/cli/format.rs +++ b/proxmox-router/src/cli/format.rs @@ -415,6 +415,9 @@ fn generate_nested_usage_do<'cli>( )); } CommandLineInterface::Nested(map) => { + if format == DocumentationFormat::ReST { + usage.push_str("\n----\n\n"); + } usage.push_str(&generate_nested_usage_do(state, &new_prefix, map, format)); } }