From 0feddeac6a01a2342902dd5670c6e7afd2a9cac2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 10 Apr 2019 17:59:53 +0100 Subject: [PATCH] Fix raw tags --- source/_posts/2015-07-21-automating-sculpin-jenkins.md | 4 ++-- source/_posts/2016-07-15-building-gmail-filters-in-php.md | 4 ++-- ...018-11-20-rebuilding-bartik-with-vuejs-tailwind-css.md | 8 ++++---- .../_posts/2018-12-16-published-my-first-npm-package.md | 8 ++++---- ...27-rebuilding-bartik-with-vuejs-tailwind-css-part-2.md | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/source/_posts/2015-07-21-automating-sculpin-jenkins.md b/source/_posts/2015-07-21-automating-sculpin-jenkins.md index c93b07ce..317baa58 100644 --- a/source/_posts/2015-07-21-automating-sculpin-jenkins.md +++ b/source/_posts/2015-07-21-automating-sculpin-jenkins.md @@ -69,7 +69,7 @@ talks: The Twig layout: ```language-twig -{% raw -%} +{% verbatim -%} {% for talk in talks|reverse if talk.date >= now %} {# Upcoming talks #} {% endfor %} @@ -77,7 +77,7 @@ The Twig layout: {% for talk in talks if talk.date < now %} {# Previous talks #} {% endfor%} -{%- endraw %} +{%- endverbatim %} ``` I also didn’t want to have to push an empty commit or manually trigger a job in Jenkins after doing a talk in order for it to be positioned in the correct place on the page, so I also wanted Jenkins to schedule a regular build regardless of whether or not code had been pushed, so ensure that my talks page would be up to date. diff --git a/source/_posts/2016-07-15-building-gmail-filters-in-php.md b/source/_posts/2016-07-15-building-gmail-filters-in-php.md index e1f1a7d6..9ffeee84 100644 --- a/source/_posts/2016-07-15-building-gmail-filters-in-php.md +++ b/source/_posts/2016-07-15-building-gmail-filters-in-php.md @@ -50,7 +50,7 @@ Before:
```language-twig -{% raw %}{{ filter.isArchive ? 'true' : 'false' }}{% endraw %} +{% verbatim %}{{ filter.isArchive ? 'true' : 'false' }}{% endverbatim %} ```
@@ -58,7 +58,7 @@ After:
```language-twig -{% raw %}{{ filter.isArchive|boolean_string }}{% endraw %} +{% verbatim %}{{ filter.isArchive|boolean_string }}{% endverbatim %} ```
diff --git a/source/_posts/2018-11-20-rebuilding-bartik-with-vuejs-tailwind-css.md b/source/_posts/2018-11-20-rebuilding-bartik-with-vuejs-tailwind-css.md index 0bba874f..c84a01b7 100644 --- a/source/_posts/2018-11-20-rebuilding-bartik-with-vuejs-tailwind-css.md +++ b/source/_posts/2018-11-20-rebuilding-bartik-with-vuejs-tailwind-css.md @@ -61,7 +61,7 @@ export default { `src/components/Welcome.vue`: -
{% raw %} +
{% verbatim %} ```vuejs