## Making it responsive
@@ -191,7 +191,7 @@ I also moved the links into `data` too - each link is it’s own object with it'
`src/components/MainMenu.vue`:
-{% raw %}
+{% verbatim %}
```vuejs
@@ -275,7 +275,7 @@ I also moved the links into `data` too - each link is it’s own object with it'
}
```
-
{% endraw %}
+{% endverbatim %}
## The result
diff --git a/source/_posts/2018-12-16-published-my-first-npm-package.md b/source/_posts/2018-12-16-published-my-first-npm-package.md
index ace4cc99..8f17fdff 100644
--- a/source/_posts/2018-12-16-published-my-first-npm-package.md
+++ b/source/_posts/2018-12-16-published-my-first-npm-package.md
@@ -54,7 +54,7 @@ The `v-cloak` directive exists on an element until Vue finishes compiling, after
In my `base.html.twig` template, I’ve added `v-cloak` to the wrapper div within the `body`.
-{% raw %}
+{% verbatim %}
```twig
@@ -62,11 +62,11 @@ In my `base.html.twig` template, I’ve added `v-cloak` to the wrapper div withi
```
-
{% endraw %}
+
{% endverbatim %}
Within my `navbar.html.twig` partial, I have a placeholder div that also contains the site name, which is instantly visible but has the `v-cloak-block` class so it’s hidden once Vue has compiled and the `Navbar` Vue component is visible instead.
-{% raw %}
+{% verbatim %}
```twig
@@ -81,7 +81,7 @@ Within my `navbar.html.twig` partial, I have a placeholder div that also contain
```
-
{% endraw %}
+
{% endverbatim %}
I was originally surprised that these classes weren’t included as part of Tailwind or as part of an existing plugin, but as I’ve already used these styles on several projects that include Vue.js with Symfony or Sculpin, it made sense to extract it into a plugin and make it available as a npm package which I can easily add to any project - as well as making it easier to maintain if I need to add additional variations at a later point.
diff --git a/source/_posts/2018-12-27-rebuilding-bartik-with-vuejs-tailwind-css-part-2.md b/source/_posts/2018-12-27-rebuilding-bartik-with-vuejs-tailwind-css-part-2.md
index a85e48f5..454b8ca3 100644
--- a/source/_posts/2018-12-27-rebuilding-bartik-with-vuejs-tailwind-css-part-2.md
+++ b/source/_posts/2018-12-27-rebuilding-bartik-with-vuejs-tailwind-css-part-2.md
@@ -52,7 +52,7 @@ In the first version, every link was individually styled which resulted in a lot
I added a `style` section within `Welcome.vue`, and added some default styling for links based on their location on the page - [extracting some Tailwind components](https://tailwindcss.com/docs/extracting-components).
-
{% raw %}
+
{% verbatim %}
```vuejs
...
@@ -104,7 +104,7 @@ Within the `style` section, I’m able to use Tailwind’s custom `@apply` direc
@apply border-none
```
-{% endraw %}
+{% endverbatim %}
## Extracting a Vue component for Drupal blocks