style: Enforce linting rules on markdown files

* chore: add markdownlint-cli2 and config for mkdocs

* style: enforce linting rules on mkdocs md files

* chore: tweaks to markdownlint rules

* style: linting changelog

* style: linting release notes

* style: linting .github md files

* style: further linting of docs

* style: linting readmes

* chore: update linting script entries

* docs: tweak release after rebase

* chore: simplify root md linting config

* chore: extend base config

* chore: implement requested changes

* chore: remove unnecessary exception

* chore: fix comment type

* styling: single config + list spacing

* chore: implement requested changes

* chore: use .cjs files for markdownlint config

* chore: implement requested changes
This commit is contained in:
Jasper Vaneessen
2022-08-25 11:32:09 +02:00
committed by GitHub
parent 04695e7651
commit 9a5fc674f3
37 changed files with 760 additions and 247 deletions

View File

@@ -11,7 +11,7 @@ This is a temporary solution until the server has more advanced account manageme
after which this API will change.
Below is example code of how to make use of these tokens.
It makes use of several utility functions from the
It makes use of several utility functions from the
[Solid Authentication Client](https://github.com/inrupt/solid-client-authn-js).
Note that the code below uses top-level `await`, which not all JavaScript engines support,
so this should all be contained in an `async` function.
@@ -72,7 +72,7 @@ const response = await fetch(tokenUrl, {
});
// This is the Access token that will be used to do an authenticated request to the server.
// The JSON also contains an "expires_in" field in seconds,
// The JSON also contains an "expires_in" field in seconds,
// which you can use to know when you need request a new Access token.
const { access_token: accessToken } = await response.json();
```