Skip to content

Commit 3db20c8

Browse files
authored
Removes em/span tags according to docs-team 3076 (#40098)
1 parent ea3bcbd commit 3db20c8

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

content/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ You can use the `git config` command to change the email address you associate w
8585

8686
```shell
8787
$ git config --global user.email
88-
<span class="output">email@example.com</span>
88+
email@example.com
8989
```
9090

9191
1. {% data reusables.user-settings.link_email_with_your_account %}
@@ -109,7 +109,7 @@ You can change the email address associated with commits you make in a single re
109109

110110
```shell
111111
$ git config user.email
112-
<span class="output">email@example.com</span>
112+
email@example.com
113113
```
114114

115115
1. {% data reusables.user-settings.link_email_with_your_account %}

content/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-your-personal-account/managing-multiple-accounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ To use a different SSH key for different repositories that you clone to your wor
115115
For example, the following command sets the `GIT_SSH_COMMAND` environment variable to specify an SSH command that uses the private key file at **_PATH/TO/KEY/FILE_** for authentication to clone the repository named OWNER/REPOSITORY on {% data variables.location.product_location %}.
116116
117117
<pre>
118-
GIT_SSH_COMMAND='ssh -i <em>PATH/TO/KEY/FILE</em> -o IdentitiesOnly=yes' git clone git@github.com:<em>OWNER</em>/<em>REPOSITORY</em>
118+
GIT_SSH_COMMAND='ssh -i PATH/TO/KEY/FILE -o IdentitiesOnly=yes' git clone git@github.com:OWNER/REPOSITORY
119119
</pre>

content/admin/backing-up-and-restoring-your-instance/configuring-backups-on-your-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ $ ghe-restore -c 169.154.1.1
261261
> WARNING: All data on GitHub Enterprise appliance 169.154.1.1 (v2.9.0)
262262
> will be overwritten with data from snapshot 20170329T150710.
263263
> Please verify that this is the correct restore host before continuing.
264-
> Type 'yes' to continue: <em>yes</em>
264+
> Type 'yes' to continue: yes
265265

266266
> Starting restore of 169.154.1.1:122 from snapshot 20170329T150710
267267
# ...output truncated

content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To more accurately mirror your production environment, you can optionally copy f
4343
- For an Azure storage account, you can use [`azcopy`](https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs#copy-all-containers-directories-and-blobs-to-another-storage-account). For example:
4444

4545
```shell
46-
azcopy copy 'https://<em>SOURCE-STORAGE-ACCOUNT-NAME</em>.blob.core.windows.net/<em>SAS-TOKEN</em>' 'https://<em>DESTINATION-STORAGE-ACCOUNT-NAME</em>.blob.core.windows.net/' --recursive
46+
azcopy copy 'https://SOURCE-STORAGE-ACCOUNT-NAME.blob.core.windows.net/SAS-TOKEN' 'https://DESTINATION-STORAGE-ACCOUNT-NAME.blob.core.windows.net/' --recursive
4747
```
4848

4949
- For Amazon S3 buckets, you can use [`aws s3 sync`](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/sync.html). For example:

content/admin/identity-and-access-management/using-saml-for-enterprise-iam/troubleshooting-saml-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Ensure that you configure signed assertions for the {% data variables.product.pr
9292
If the IdP's response has a missing or incorrect value for `Audience`, the following error message will appear in the authentication log.
9393

9494
```
95-
Audience is invalid. Audience attribute does not match https://<em>YOUR-INSTANCE-URL</em>
95+
Audience is invalid. Audience attribute does not match https://YOUR-INSTANCE-URL
9696
```
9797

9898
Ensure that you set the value for `Audience` on your IdP to the `EntityId` for {% data variables.location.product_location %}, which is the full URL to your instance. For example, `https://ghe.corp.example.com`.

content/authentication/troubleshooting-ssh/error-permission-denied-publickey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ ssh -T git@{% data variables.command_line.codeblock %}
9494
9595
```shell
9696
$ ssh-add -l -E sha256
97-
> 2048 <em>SHA256:274ffWxgaxq/tSINAykStUL7XWyRNcRTlcST1Ei7gBQ</em> /Users/<em>USERNAME</em>/.ssh/id_rsa (RSA)
97+
> 2048 SHA256:274ffWxgaxq/tSINAykStUL7XWyRNcRTlcST1Ei7gBQ /Users/USERNAME/.ssh/id_rsa (RSA)
9898
```
9999
100100
{% endlinux %}

content/get-started/using-git/dealing-with-non-fast-forward-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If another person has pushed to the same branch as you, Git won't be able to pus
1919
$ git push origin main
2020
> To https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY.git
2121
> ! [rejected] main -> main (non-fast-forward)
22-
> error: failed to push some refs to 'https://{% data variables.command_line.codeblock %}/<em>USERNAME</em>/<em>REPOSITORY</em>.git'
22+
> error: failed to push some refs to 'https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY.git'
2323
> To prevent you from losing history, non-fast-forward updates were rejected
2424
> Merge the remote changes (e.g. 'git pull') before pushing again. See the
2525
> 'Note about fast-forwards' section of 'git push --help' for details.

content/issues/planning-and-tracking-with-projects/automating-your-project/using-the-api-to-manage-projects.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,8 @@ You can find the node ID of a {% data variables.product.product_name %} user or
782782

783783
```shell
784784
curl --request GET \
785-
--url https://api.github.com/users/<em>GITHUB_OWNER</em> \
786-
--header 'Authorization: token <em>TOKEN</em>' \
785+
--url https://api.github.com/users/GITHUB_OWNER \
786+
--header 'Authorization: token TOKEN' \
787787
--header 'Accept: application/vnd.github+json'
788788
```
789789

@@ -792,7 +792,7 @@ curl --request GET \
792792
{% cli %}
793793

794794
```shell
795-
gh api -H "Accept: application/vnd.github+json" /users/<em>GITHUB_OWNER</em>
795+
gh api -H "Accept: application/vnd.github+json" /users/GITHUB_OWNER
796796
```
797797

798798
{% endcli %}
@@ -804,8 +804,8 @@ To create the project, replace `OWNER_ID` with the node ID of the new project ow
804804
```shell
805805
curl --request POST \
806806
--url https://api.github.com/graphql \
807-
--header 'Authorization: token <em>TOKEN</em>' \
808-
--data '{"query":"mutation {createProjectV2(input: {ownerId: \"<em>OWNER_ID</em>\" title: \"<em>PROJECT_NAME</em>\"}) {projectV2 {id}}}"}'
807+
--header 'Authorization: token TOKEN' \
808+
--data '{"query":"mutation {createProjectV2(input: {ownerId: \"OWNER_ID\" title: \"PROJECT_NAME\"}) {projectV2 {id}}}"}'
809809
```
810810

811811
{% endcurl %}
@@ -817,8 +817,8 @@ gh api graphql -f query='
817817
mutation{
818818
createProjectV2(
819819
input: {
820-
ownerId: "<em>OWNER_ID</em>",
821-
title: "<em>PROJECT_NAME</em>"
820+
ownerId: "OWNER_ID",
821+
title: "PROJECT_NAME"
822822
}
823823
){
824824
projectV2 {

content/packages/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In this guide, you'll create a {% data variables.product.prodname_actions %} wor
9595
- Edit the `package.json` file and specify the `publishConfig` key:
9696
```shell
9797
"publishConfig": {
98-
"@<em>YOUR-USERNAME</em>:registry": "https://npm.pkg.github.com"
98+
"@YOUR-USERNAME:registry": "https://npm.pkg.github.com"
9999
}
100100
```
101101
1. Commit and push your changes to {% data variables.product.prodname_dotcom %}.

content/packages/working-with-a-github-packages-registry/working-with-the-docker-registry.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To keep your credentials secure, we recommend you save your {% data variables.pr
5454
{% raw %}
5555

5656
```shell
57-
cat ~/TOKEN.txt | docker login https://docker.pkg.github.com -u <em>USERNAME</em> --password-stdin
57+
cat ~/TOKEN.txt | docker login https://docker.pkg.github.com -u USERNAME --password-stdin
5858
```
5959

6060
{% endraw %}
@@ -209,7 +209,7 @@ $ docker images
209209
> REPOSITORY TAG IMAGE ID CREATED SIZE
210210
> monalisa 1.0 c75bebcdd211 4 weeks ago 1.11MB
211211

212-
# Tag the image with <em>OWNER/REPO/IMAGE_NAME</em>
212+
# Tag the image with OWNER/REPO/IMAGE_NAME
213213
$ docker tag c75bebcdd211 docker.pkg.github.com/octocat/octo-app/monalisa:1.0
214214

215215
# Push the image to {% data variables.product.prodname_registry %}
@@ -224,7 +224,7 @@ $ docker images
224224
> REPOSITORY TAG IMAGE ID CREATED SIZE
225225
> monalisa 1.0 c75bebcdd211 4 weeks ago 1.11MB
226226

227-
# Tag the image with <em>OWNER/REPO/IMAGE_NAME</em>
227+
# Tag the image with OWNER/REPO/IMAGE_NAME
228228
$ docker tag c75bebcdd211 docker.HOSTNAME/octocat/octo-app/monalisa:1.0
229229

230230
# Push the image to {% data variables.product.prodname_registry %}
@@ -238,7 +238,7 @@ You can publish a new Docker image for the first time and name it `monalisa`.
238238
{% ifversion fpt or ghec %}
239239

240240
```shell
241-
# Build the image with docker.pkg.github.com/<em>OWNER/REPOSITORY/IMAGE_NAME:VERSION</em>
241+
# Build the image with docker.pkg.github.com/OWNER/REPOSITORY/IMAGE_NAME:VERSION
242242
# Assumes Dockerfile resides in the current working directory (.)
243243
$ docker build -t docker.pkg.github.com/octocat/octo-app/monalisa:1.0 .
244244

@@ -249,7 +249,7 @@ $ docker push docker.pkg.github.com/octocat/octo-app/monalisa:1.0
249249
{% else %}
250250

251251
```shell
252-
# Build the image with docker.<em>HOSTNAME/OWNER/REPOSITORY/IMAGE_NAME:VERSION</em>
252+
# Build the image with docker.HOSTNAME/OWNER/REPOSITORY/IMAGE_NAME:VERSION
253253
# Assumes Dockerfile resides in the current working directory (.)
254254
$ docker build -t docker.HOSTNAME/octocat/octo-app/monalisa:1.0 .
255255

0 commit comments

Comments
 (0)