diff --git a/guides/getting-started/creating-your-own-server-instance.md b/guides/getting-started/creating-your-own-server-instance.md
index dec4ca2..711e1f3 100644
--- a/guides/getting-started/creating-your-own-server-instance.md
+++ b/guides/getting-started/creating-your-own-server-instance.md
@@ -16,8 +16,8 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Update your `.csproj` file** to reference the latest `OpenIddict.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:
```xml
-
-
+
+
```
- **Register your Entity Framework Core database context and configure the OpenIddict core services** in `Program.cs`
diff --git a/guides/getting-started/implementing-token-validation-in-your-apis.md b/guides/getting-started/implementing-token-validation-in-your-apis.md
index 0d9152b..7e97b5e 100644
--- a/guides/getting-started/implementing-token-validation-in-your-apis.md
+++ b/guides/getting-started/implementing-token-validation-in-your-apis.md
@@ -12,7 +12,7 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Reference the `OpenIddict.AspNetCore` package**:
```xml
-
+
```
- **Configure the OpenIddict validation services** in `Startup.ConfigureServices`:
diff --git a/guides/getting-started/integrating-with-a-remote-server-instance.md b/guides/getting-started/integrating-with-a-remote-server-instance.md
index 2522775..ddc841a 100644
--- a/guides/getting-started/integrating-with-a-remote-server-instance.md
+++ b/guides/getting-started/integrating-with-a-remote-server-instance.md
@@ -18,7 +18,7 @@ in web and desktop applications. If you want to use a non-interactive flow like
- **Update your `.csproj` file** to reference the latest `OpenIddict` package:
```xml
-
+
```
- **Configure the OpenIddict client services** in `Program.cs` (or `Startup.cs` if you use the regular ASP.NET Core web host):
@@ -72,8 +72,8 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Update your `.csproj` file** to reference the latest `OpenIddict.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:
```xml
-
-
+
+
```
- **Configure the OpenIddict core services** in `Program.cs` (or `Startup.cs`, depending on whether you're using the minimal host or the regular host):
diff --git a/guides/migration/60-to-70.md b/guides/migration/60-to-70.md
index b8bfec1..2f35c62 100644
--- a/guides/migration/60-to-70.md
+++ b/guides/migration/60-to-70.md
@@ -14,10 +14,10 @@ For that, update your `.csproj` file to reference the `OpenIddict` 7.x packages.
```xml
-
+
-
+
```
diff --git a/integrations/aspnet-core.md b/integrations/aspnet-core.md
index 7bdd5d4..aeefac3 100644
--- a/integrations/aspnet-core.md
+++ b/integrations/aspnet-core.md
@@ -29,9 +29,9 @@ To configure the ASP.NET Core integration, you'll need to:
(depending on whether you need the client and/or server and/or validation features in your project):
```xml
-
-
-
+
+
+
```
- **Call `UseAspNetCore()` for each OpenIddict feature (client, server and validation) you want to add**:
diff --git a/integrations/entity-framework-core.md b/integrations/entity-framework-core.md
index 644b5d8..3f6788c 100644
--- a/integrations/entity-framework-core.md
+++ b/integrations/entity-framework-core.md
@@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework Core as the database for applica
- **Reference the `OpenIddict.EntityFrameworkCore` package**:
```xml
-
+
```
- **Create a database context deriving from `DbContext` (or `IdentityDbContext` when using ASP.NET Core Identity)**:
diff --git a/integrations/entity-framework.md b/integrations/entity-framework.md
index b1fae61..54c4faa 100644
--- a/integrations/entity-framework.md
+++ b/integrations/entity-framework.md
@@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework 6.x as the database for applicat
- **Reference the `OpenIddict.EntityFramework` package**:
```xml
-
+
```
- **Create a database context deriving from `DbContext` and register the OpenIddict entities in the model**:
diff --git a/integrations/mongodb.md b/integrations/mongodb.md
index 4b46b88..c34a783 100644
--- a/integrations/mongodb.md
+++ b/integrations/mongodb.md
@@ -6,7 +6,7 @@ To configure OpenIddict to use MongoDB as the database for applications, authori
- **Reference the `OpenIddict.MongoDb` package**:
```xml
-
+
```
- **Configure OpenIddict to use the MongoDB stores**:
diff --git a/integrations/operating-systems.md b/integrations/operating-systems.md
index 632723c..9917a8b 100644
--- a/integrations/operating-systems.md
+++ b/integrations/operating-systems.md
@@ -295,7 +295,7 @@ To configure the operating system integration, you'll need to:
- **Reference the `OpenIddict.Client.SystemIntegration` package**:
```xml
-
+
```
- **Call `UseSystemIntegration()` in the client options**:
diff --git a/integrations/owin.md b/integrations/owin.md
index 8b6f4b2..524a661 100644
--- a/integrations/owin.md
+++ b/integrations/owin.md
@@ -26,9 +26,9 @@ To configure the OWIN integration, you'll need to:
(depending on whether you need the client and/or server and/or validation features in your project):
```xml
-
-
-
+
+
+
```
- **Call `UseOwin()` for each OpenIddict feature (client, server and validation) you want to add**:
diff --git a/integrations/quartz.md b/integrations/quartz.md
index c3f6941..7188093 100644
--- a/integrations/quartz.md
+++ b/integrations/quartz.md
@@ -6,7 +6,7 @@ To configure OpenIddict to use Quartz.NET to perform automated cleanup tasks, yo
- **Reference the `OpenIddict.Quartz` package**:
```xml
-
+
```
- **Register the Quartz.NET services and configure it to use dependency injection and an in-memory store**:
diff --git a/integrations/system-net-http.md b/integrations/system-net-http.md
index f01b856..aafee95 100644
--- a/integrations/system-net-http.md
+++ b/integrations/system-net-http.md
@@ -15,8 +15,8 @@ To configure the `System.Net.Http` integration, you'll need to:
(depending on whether you need the client and/or validation features in your project):
```xml
-
-
+
+
```
- **Call `UseSystemNetHttp()` for each OpenIddict feature (client and validation) you want to add**:
diff --git a/integrations/web-providers.md b/integrations/web-providers.md
index a97515e..29424c2 100644
--- a/integrations/web-providers.md
+++ b/integrations/web-providers.md
@@ -117,6 +117,7 @@ or mobile application targeting a platform supported by the OpenIddict client (i
| Twitch | https://dev.twitch.tv/docs/authentication |
| Twitter (X) | https://docs.x.com/resources/fundamentals/authentication/oauth-2-0/authorization-code |
| Typeform | https://www.typeform.com/developers/get-started/applications/ |
+| Vercel | https://vercel.com/docs/sign-in-with-vercel/getting-started |
| Verimi | https://docs.verimi.de/#/oidc/oidc_overview |
| Vimeo | https://developer.vimeo.com/api/authentication |
| VK ID | https://id.vk.com/about/business/go/docs/en/vkid/latest/oauth-vk |
@@ -170,7 +171,7 @@ To configure the `System.Net.Http` integration, you'll need to:
- **Reference the `OpenIddict.Client.WebIntegration` package**:
```xml
-
+
```
- **Call `UseWebProviders()` in the client options**: