aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2020-06-16 19:43:53 +0300
committerGitHub <noreply@github.com>2020-06-16 09:43:53 -0700
commitcce70171d45561ac466599ae84983de6aa98597d (patch)
tree7eb6e11d73888f85c0db6ccd5448612159146733 /docs/getting-started
parentbfa11be2f95d16c1c77e423589fdf8589865ec0d (diff)
downloadoss-fuzz-cce70171d45561ac466599ae84983de6aa98597d.tar.gz
docs: guard curly braces with {% raw %} .. {% endraw %} (#3994)
Just a follow-up to https://github.com/google/oss-fuzz/pull/3984 that should address https://github.com/google/oss-fuzz/pull/3984#discussion_r440951881. According to https://jekyllrb.com/docs/liquid/tags/#code-snippet-highlighting, another option would be to add `render_with_liquid: false` in your front matter to disable Liquid entirely for a particular document.
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/continuous_integration.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/getting-started/continuous_integration.md b/docs/getting-started/continuous_integration.md
index 8a544b481..b53f95908 100644
--- a/docs/getting-started/continuous_integration.md
+++ b/docs/getting-started/continuous_integration.md
@@ -102,6 +102,7 @@ a [matrix](https://help.github.com/en/actions/reference/workflow-syntax-for-gith
can be used. To use a sanitizer add it to the list of sanitizers in the matrix field below:
```yaml
+{% raw %}
name: CIFuzz
on: [pull_request]
jobs:
@@ -132,6 +133,7 @@ jobs:
with:
name: ${{ matrix.sanitizer }}-artifacts
path: ./out/artifacts
+{% endraw %}
```
## Understanding results