Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>&#123% raw %&#125;</code> and <code>&#123% raw %&#125;</code> 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 <code>&#123;% raw %&#125;</code> and <code>&#123;% raw %&#125;</code> tags to disable Liquid processing for that section. For example:

* **Use:**

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

* **Avoid:**
Expand Down