Code of Conduct
What article on docs.github.com is affected?
https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
What part(s) of the article would you like to see updated?
Table rows starting from github.server_url are not properly processed:

This is caused by a missing whitespace control character:
diff --git a/content/actions/learn-github-actions/contexts.md b/content/actions/learn-github-actions/contexts.md
index ad0f5dccd4b4..b4afc3374788 100644
--- a/content/actions/learn-github-actions/contexts.md
+++ b/content/actions/learn-github-actions/contexts.md
@@ -208,7 +208,7 @@ The `github` context contains information about the workflow run and the event t
| `github.run_number` | `string` | {% data reusables.github-actions.run_number_description %} |
{%- ifversion fpt or ghec or ghes > 3.5 or ghae-issue-4722 %}
| `github.run_attempt` | `string` | A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. |
-{% endif %}
+{%- endif %}
| `github.server_url` | `string` | The URL of the GitHub server. For example: `https://github.com`. |
| `github.sha` | `string` | The commit SHA that triggered the workflow run. |
| `github.token` | `string` | A token to authenticate on behalf of the GitHub App installed on your repository. This is functionally equivalent to the `GITHUB_TOKEN` secret. For more information, see "[Automatic token authentication](/actions/security-guides/automatic-token-authentication)." |
Additional information
This is introduced in
Hence perhaps there's a similar issue in the private repo.
Related docs:
Code of Conduct
What article on docs.github.com is affected?
https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
What part(s) of the article would you like to see updated?
Table rows starting from

github.server_urlare not properly processed:This is caused by a missing whitespace control character:
Additional information
This is introduced in
Hence perhaps there's a similar issue in the private repo.
Related docs: