-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add shortcuts to SDKs and allow query parameters #225
Conversation
Deploying with Cloudflare Pages
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
@@ -88,6 +88,16 @@ const config = { | |||
target: "_self", | |||
}, | |||
items: [ | |||
{ | |||
href: "/services/sdk/overview?sdk=ts", | |||
label: "Typescript SDK", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick – we have somewhat inconsistent capitalisation of TypeScript; I believe the canonical spelling is with a capital S :-)
label: "Typescript SDK", | |
label: "TypeScript SDK", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also: should we refer to this as the TypeScript / JavaScript SDK? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh you're right. I'll adapt that everywhere... Maybe in a separate PR to avoid overflowing this one.
}, | ||
{ | ||
to: "/services/sdk/overview?sdk=java", | ||
label: "Java SDK", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto "Java / Kotlin SDK"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added an issue for writing Kotlin docs in general: #227
We can take this approach where it's similar for both. But for example, the example on the overview page will look different.
Fixes #226