Skip to content

Commit 17ae419

Browse files
committed
docs: add a header to config docs
1 parent b5fed35 commit 17ae419

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/cli/config.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# robot.toml configuration settings
2+
13
## [profile].description
24

35
Type: `Optional[str]`

src/robotcode/cli/commands/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def desc(app: Application, name: Optional[List[str]] = None) -> None:
307307
]
308308

309309
if app.config.output_format is None or app.config.output_format == OutputFormat.TEXT:
310-
output = ""
310+
output = "# robot.toml configuration settings\n\n"
311311
for field, value in config_fields:
312312
output += f"## {field}\n\n"
313313
type = (

0 commit comments

Comments
 (0)