Skip to content

Commit

Permalink
lower-case letter links
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-gan committed Dec 10, 2024
1 parent 7fee7d1 commit f380292
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/integrations/providers/all.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you'd like to contribute an integration, see [Contributing integrations](/doc

:::

[0-9](#0-9) | [A](#A) | [B](#B) | [C](#C) | [D](#D) | [E](#E) | [F](#F) | [G](#G) | [H](#H) | [I](#I) | [J](#J) | [K](#K) | [L](#L) | [M](#M) | [N](#N) | [O](#O) | [P](#P) | [Q](#Q) | [R](#R) | [S](#S) | [T](#T) | [U](#U) | [V](#V) | [W](#W) | [X](#X) | [Y](#Y) | [Z](#Z)
[0-9](#0-9) | [A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) | [G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [X](#x) | [Y](#y) | [Z](#z)


---
Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/providers_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def generate_index_page(items: list[str], num_columns: int = 5) -> str:
""",
]
# First part: Menu with links
menu_links = " | ".join(f"[{letter}](#{letter})" for letter, _ in sorted_groups)
menu_links = " | ".join(f"[{letter}](#{letter.lower()})" for letter, _ in sorted_groups)
content.append(menu_links + "\n\n")
content.append("\n---\n\n")

Expand Down

0 comments on commit f380292

Please sign in to comment.