From f5f61e659e841e7e70e1b2da9427be9a2a70b7eb Mon Sep 17 00:00:00 2001 From: Tim Hansen Date: Fri, 26 Mar 2021 11:22:38 -0600 Subject: [PATCH] Backticks Signed-off-by: Tim Hansen --- docs/auth/auth0/provider.md | 4 ++-- docs/auth/github/provider.md | 4 ++-- docs/auth/gitlab/provider.md | 4 ++-- docs/auth/google/provider.md | 4 ++-- docs/auth/microsoft/provider.md | 4 ++-- docs/auth/okta/provider.md | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/auth/auth0/provider.md b/docs/auth/auth0/provider.md index e2bed15e55..383cda2014 100644 --- a/docs/auth/auth0/provider.md +++ b/docs/auth/auth0/provider.md @@ -45,8 +45,8 @@ The Auth0 provider is a structure with three configuration keys: ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the auth0AuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `auth0AuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { auth0AuthApiRef, SignInConfig, SignInPage } from '@backstage/core'; diff --git a/docs/auth/github/provider.md b/docs/auth/github/provider.md index 6a4d952b6b..6e194f36f7 100644 --- a/docs/auth/github/provider.md +++ b/docs/auth/github/provider.md @@ -48,8 +48,8 @@ The GitHub provider is a structure with three configuration keys: ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the githubAuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `githubAuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { githubAuthApiRef, SignInConfig, SignInPage } from '@backstage/core'; diff --git a/docs/auth/gitlab/provider.md b/docs/auth/gitlab/provider.md index 99f9117e2e..e9cfdfa98e 100644 --- a/docs/auth/gitlab/provider.md +++ b/docs/auth/gitlab/provider.md @@ -47,8 +47,8 @@ The GitLab provider is a structure with three configuration keys: ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the gitlabAuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `gitlabAuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { gitlabAuthApiRef, SignInConfig, SignInPage } from '@backstage/core'; diff --git a/docs/auth/google/provider.md b/docs/auth/google/provider.md index ea25d6d2a6..2765b509f3 100644 --- a/docs/auth/google/provider.md +++ b/docs/auth/google/provider.md @@ -52,8 +52,8 @@ The Google provider is a structure with two configuration keys: ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the googleAuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `googleAuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { googleAuthApiRef, SignInConfig, SignInPage } from '@backstage/core'; diff --git a/docs/auth/microsoft/provider.md b/docs/auth/microsoft/provider.md index c1080428be..3aa9de0df1 100644 --- a/docs/auth/microsoft/provider.md +++ b/docs/auth/microsoft/provider.md @@ -48,8 +48,8 @@ The Microsoft provider is a structure with three configuration keys: ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the microsoftAuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `microsoftAuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { microsoftAuthApiRef, SignInConfig, SignInPage } from '@backstage/core'; diff --git a/docs/auth/okta/provider.md b/docs/auth/okta/provider.md index 3ea959a85e..091c5fffb6 100644 --- a/docs/auth/okta/provider.md +++ b/docs/auth/okta/provider.md @@ -61,8 +61,8 @@ The values referenced are found on the Application page on your Okta site. ## Adding the provider to the Backstage frontend -To add the provider to the frontend, add the oktaAuthApi reference and -SignInPage component to `createApp` in `packages/app/src/App.tsx`: +To add the provider to the frontend, add the `oktaAuthApi` reference and +`SignInPage` component to `createApp` in `packages/app/src/App.tsx`: ```diff + import { oktaAuthApiRef, SignInConfig, SignInPage } from '@backstage/core';