aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-11-01 12:37:56 +0200
committerXhmikosR <[email protected]>2019-11-01 20:22:37 +0200
commitf830450ca876d01ad45b8083d7251ca487ef5133 (patch)
tree5e870036c6a47952a891dc10452e092079af8caf
parentb0b8d3c982ef5fedd720a0038f3f4546217a7e5b (diff)
downloadbootstrap-f830450ca876d01ad45b8083d7251ca487ef5133.tar.xz
bootstrap-f830450ca876d01ad45b8083d7251ca487ef5133.zip
Fix highlighting.
v4-dev is using Jekyll, not Hugo.
-rw-r--r--site/docs/4.3/getting-started/theming.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/docs/4.3/getting-started/theming.md b/site/docs/4.3/getting-started/theming.md
index 1a88c44dd..99c5066c5 100644
--- a/site/docs/4.3/getting-started/theming.md
+++ b/site/docs/4.3/getting-started/theming.md
@@ -233,7 +233,7 @@ We use the `add` and `subtract` functions to wrap the CSS `calc` function. The p
Example where the calc is valid:
-{{< highlight scss >}}
+{% highlight scss %}
$border-radius: .25rem;
$border-width: 1px;
@@ -246,11 +246,11 @@ $border-width: 1px;
// Output the same calc(.25rem - 1px) as above
border-radius: subtract($border-radius, $border-width);
}
-{{< /highlight >}}
+{% endhighlight %}
Example where the calc is invalid:
-{{< highlight scss >}}
+{% highlight scss %}
$border-radius: .25rem;
$border-width: 0;
@@ -263,7 +263,7 @@ $border-width: 0;
// Output .25rem
border-radius: subtract($border-radius, $border-width);
}
-{{< /highlight >}}
+{% endhighlight %}
## Sass options