Skip to content

Commit b7520b7

Browse files
committed
gemini review
1 parent 40dd323 commit b7520b7

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.ci/lint-docs-tool-page.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ for filepath in integration_dir.rglob("*.md"):
7575
file_errors = True
7676
7777
# 3. Strip code blocks from body to avoid linting example markdown headings
78-
clean_body = re.sub(r"```.*?```", "", body, flags=re.DOTALL)
78+
clean_body = re.sub(r"^(?:```|~~~).*?^(?:```|~~~)", "", body, flags=re.DOTALL | re.MULTILINE)
7979
8080
# 4. Check H1 Headings
8181
if re.search(r"^#\s+\w+", clean_body, re.MULTILINE):

docs/en/integrations/cockroachdb/cockroachdb-list-schemas.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,7 @@ CockroachDB includes PostgreSQL-compatible system schemas plus CockroachDB-speci
290290

291291
These are automatically filtered from the results.
292292

293-
#### System Schemas
294-
User-Defined Flag
293+
### User-Defined Flag
295294

296295
The `is_user_defined` field helps distinguish:
297296
- `true`: User-created schemas

0 commit comments

Comments
 (0)