Skip to content

Commit 436a372

Browse files
committed
remove spaces from markdown anchor link
1 parent d6e256b commit 436a372

3 files changed

Lines changed: 22 additions & 69 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"@astrojs/sitemap": "^3.6.0",
1919
"@fontsource-variable/inter": "^5.2.8",
2020
"@fontsource/rubik": "^5.2.8",
21-
"@iconify-json/devicon": "^1.2.52",
21+
"@iconify-json/devicon": "^1.2.55",
2222
"@iconify-json/skill-icons": "^1.2.3",
2323
"@iconify-json/vscode-icons": "^1.2.37",
24-
"astro": "^5.16.5",
24+
"astro": "^5.16.6",
2525
"astro-icon": "^1.1.5",
2626
"sharp": "^0.34.5",
2727
"typescript": "^5.9.3"

pnpm-lock.yaml

Lines changed: 19 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/mdx/anchor.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ type Props = HTMLAttributes<'a'>;
66
const props = Astro.props;
77
---
88

9-
<a {...props} class="font-medium">
10-
<slot />
11-
</a>
9+
<a {...props} class="font-medium"><slot /></a>

0 commit comments

Comments
 (0)