Skip to content

Commit

Permalink
Fix HTML entities showing on the style guide (#43330)
Browse files Browse the repository at this point in the history
  • Loading branch information
guntrip authored Sep 26, 2023
1 parent 8353050 commit cfc0737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/contributing/writing-for-github-docs/style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ Within code blocks:
- **Avoid:** `git checkout -b <branch-name>`
- 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 <code>&#123% raw %&#125;</code> <code>&#123% endraw %&#125;</code> to disable Liquid processing for that section.
- If your code example includes `{` or `}` that should render, wrap that section in <code>&#123;% raw %&#125;</code> <code>&#123;% endraw %&#125;</code> to disable Liquid processing for that section.
- **Use**:

<pre>
GITHUB_TOKEN: &#123% raw %&#125;$&#123;&#123; secrets.GITHUB_TOKEN &#125;&#125;&#123;% endraw %&#125;
GITHUB_TOKEN: &#123;% raw %&#125;$&#123;&#123; secrets.GITHUB_TOKEN &#125;&#125;&#123;% endraw %&#125;
</pre>

- **Avoid**:
Expand Down

0 comments on commit cfc0737

Please sign in to comment.