Skip to content

Commit 82bc367

Browse files
committedMay 17, 2021
Disabled dead links check for now
1 parent 0ccd318 commit 82bc367

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed
 

‎website/gatsby-config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ module.exports = {
6060
backgroundColor: "transparent",
6161
},
6262
},
63-
"gatsby-remark-check-links",
63+
// todo: enable and fix
64+
// note: disabled for now, because # hash links are not recognized.
65+
// we probably need this plugin again gatsby-remark-autolink-headers.
66+
//`gatsby-remark-check-links`,
6467
],
6568
},
6669
},

‎website/src/blog/2020-03-18-entity-framework/2020-03-18-entity-framework.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
370370

371371
## Testing a GraphQL Server
372372

373-
In order to now query our GraphQL server we need a GraphQL IDE to formulate queries and explore the schema. If you want a deluxe GraphQL IDE as an application, you can get our very own Banana Cakepop which can be downloaded [here](/docs/bananacakepop).
373+
In order to now query our GraphQL server we need a GraphQL IDE to formulate queries and explore the schema. If you want a deluxe GraphQL IDE as an application, you can get our very own Banana Cake Pop which can be downloaded [here](/docs/bananacakepop).
374374

375375
![Hot Chocolate](banana-cake-pop.png)
376376

@@ -415,11 +415,11 @@ Let’s test our GraphQL server.
415415
dotnet run --urls http://localhost:5000
416416
```
417417

418-
### Testing with Banana Cakepop
418+
### Testing with Banana Cake Pop
419419

420-
If you have chosen _Banana Cakepop_ to test and explore the GraphQL Schema open it now.
420+
If you have chosen _Banana Cake Pop_ to test and explore the GraphQL Schema open it now.
421421

422-
_Banana Cakepop_ will open with an empty tab. In the address bar type in the URL of our GraphQL server `http://localhost:5000` and hit `enter`.
422+
_Banana Cake Pop_ will open with an empty tab. In the address bar type in the URL of our GraphQL server `http://localhost:5000` and hit `enter`.
423423

424424
![Hot Chocolate](banana-cake-pop-address.png)
425425

‎website/src/docs/docs.json

+4
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@
198198
"path": "apollo-tracing",
199199
"title": "Apollo Tracing"
200200
},
201+
{
202+
"path": "coding-approaches",
203+
"title": "Coding Approaches"
204+
},
201205
{
202206
"path": "migrate-from-10-to-11",
203207
"title": "Migrate from 10.5 to 11.0"

0 commit comments

Comments
 (0)
Please sign in to comment.