From cfc0737dfeccf30dcf51a1bc2e0f81a3cafc0a86 Mon Sep 17 00:00:00 2001 From: Steve Guntrip Date: Tue, 26 Sep 2023 16:20:39 +0100 Subject: [PATCH] Fix HTML entities showing on the style guide (#43330) --- content/contributing/writing-for-github-docs/style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/contributing/writing-for-github-docs/style-guide.md b/content/contributing/writing-for-github-docs/style-guide.md index 9bd92c5d2562..bee1f3dfb81f 100644 --- a/content/contributing/writing-for-github-docs/style-guide.md +++ b/content/contributing/writing-for-github-docs/style-guide.md @@ -92,11 +92,11 @@ Within code blocks: - **Avoid:** `git checkout -b ` - Only use `$` before the command itself if you’re showing the command’s output in the same block. - If you show a command and the command's output, do not make the code block copyable. -- If your code example includes `{` or `}` that should render, wrap that section in {% raw %} {% endraw %} to disable Liquid processing for that section. +- If your code example includes `{` or `}` that should render, wrap that section in {% raw %} {% endraw %} to disable Liquid processing for that section. - **Use**:
-    GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
+    GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
     
- **Avoid**: