]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix highlighting.
authorXhmikosR <xhmikosr@gmail.com>
Fri, 1 Nov 2019 10:37:56 +0000 (12:37 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Fri, 1 Nov 2019 18:22:37 +0000 (20:22 +0200)
v4-dev is using Jekyll, not Hugo.

site/docs/4.3/getting-started/theming.md

index 1a88c44dd9299f8ec2ddaba723dc15c79bb6525e..99c5066c5872997ef88b359724908be85193be7d 100644 (file)
@@ -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