We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361461b commit 54f6922Copy full SHA for 54f6922
2 files changed
README.md
@@ -172,4 +172,5 @@ Examples:
172
/tmp/log.txt
173
npx chrome-devtools-mcp@latest --help Print CLI options
174
```
175
+
176
<!-- END AUTO GENERATED CLI -->
scripts/generate-docs.ts
@@ -119,7 +119,7 @@ function updateReadmeWithConfigOptions(help: string): void {
119
const before = readmeContent.substring(0, beginIndex + beginMarker.length);
120
const after = readmeContent.substring(endIndex);
121
122
- const updatedContent = before + '\n\n```sh\n' + help + '```\n' + after;
+ const updatedContent = before + '\n\n```sh\n' + help + '```\n\n' + after;
123
124
fs.writeFileSync(README_PATH, updatedContent);
125
console.log('Updated README.md with config options');
0 commit comments