Skip to content

Commit 0814420

Browse files
committed
Fix malformed GitHub link, tweak the markup for the e2e test sake
1 parent dd25718 commit 0814420

File tree

3 files changed

+449
-377
lines changed

3 files changed

+449
-377
lines changed

src/code/language-support/python/client/ql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: ql
33
description: Non intrusive python GraphQL client wrapped around pydantic.
44
url: https://dsal3389.github.io/ql/
5-
github: https://github.com/dsal3389/ql
5+
github: dsal3389/ql
66
---
77

88
GraphQL client library, wrapped around pydantic classes for type validation,

src/components/tools-and-libraries.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,11 @@ export function CodePage({ allTags, data }: CodePageProps) {
288288
"min-w-0", // hack to avoid overflow when opening details
289289
)}
290290
>
291-
<div className="flex grow flex-col gap-7 p-4 lg:p-8">
292-
<div className="flex items-center gap-2">
291+
<article className="flex grow flex-col gap-7 p-4 lg:p-8">
292+
<header className="flex items-center gap-2">
293293
<span className="typography-h3 grow break-all">{name}</span>
294294
<PackageLinks data={frontMatter} />
295-
</div>
295+
</header>
296296
<div className="flex gap-2">
297297
{tags.map(tag => (
298298
<NextLink
@@ -330,7 +330,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
330330
{license && <span>{license}</span>}
331331
</div>
332332
)}
333-
</div>
333+
</article>
334334

335335
{compiledSource && (
336336
<details className="bg-neu-100">

0 commit comments

Comments
 (0)