From 7cb70522fd14a00ead8b9ba2bb7613e01ae7a5a9 Mon Sep 17 00:00:00 2001 From: Yuki Kobayashi Date: Mon, 17 Mar 2025 03:58:39 +0000 Subject: [PATCH] Fix character reference format --- .../troubleshooting-your-environment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/contributing/setting-up-your-environment-to-work-on-github-docs/troubleshooting-your-environment.md b/content/contributing/setting-up-your-environment-to-work-on-github-docs/troubleshooting-your-environment.md index 297b8adb3f1f..0c8370dc7f0e 100644 --- a/content/contributing/setting-up-your-environment-to-work-on-github-docs/troubleshooting-your-environment.md +++ b/content/contributing/setting-up-your-environment-to-work-on-github-docs/troubleshooting-your-environment.md @@ -95,12 +95,12 @@ During development, you can visit any page on `http://localhost:4000` and add `? ## Working with liquid processing -If your text or code example includes content between curly brackets (`{` and `}`), you need to wrap it between {% raw %} and {% raw %} tags to disable Liquid processing for that section. For example: +If your text or code example includes content between curly brackets (`{` and `}`), you need to wrap it between {% raw %} and {% raw %} tags to disable Liquid processing for that section. For example: * **Use:**
-  GITHUB_TOKEN: {% raw %}${% raw %}{{ secrets.GITHUB_TOKEN }}{% endraw %}{% endraw %}
+  GITHUB_TOKEN: {% raw %}${% raw %}{{ secrets.GITHUB_TOKEN }}{% endraw %}{% endraw %}
   
* **Avoid:**