Commit 03b556bb authored by Heinrich Fenkart's avatar Heinrich Fenkart
Browse files

Follow-up to #13671; improves consistency of text with previous examples

Also fixes a small indentation error.
parent f09d6b7a
5 merge requests!28721Hot test,!13789Follow-up to #13671; improves consistency of text with previous examples,!16605Test pull please ignore,!22103test,!25326Adjust examples
Showing with 6 additions and 6 deletions
+6 -6
...@@ -207,14 +207,14 @@ You can use the mark tag to <mark>highlight</mark> text. ...@@ -207,14 +207,14 @@ You can use the mark tag to <mark>highlight</mark> text.
<h2 id="type-transformation">Transformation classes</h2> <h2 id="type-transformation">Transformation classes</h2>
<p>Transform text in components with text capitalization classes.</p> <p>Transform text in components with text capitalization classes.</p>
<div class="bs-example"> <div class="bs-example">
<p class="text-lowercase">Lowercase text.</p> <p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercase text.</p> <p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">Capitalize text.</p> <p class="text-capitalize">Capitalized text.</p>
</div> </div>
{% highlight html %} {% highlight html %}
<p class="text-lowercase">Lowercase text.</p> <p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercase text.</p> <p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">Capitalize text.</p> <p class="text-capitalize">Capitalized text.</p>
{% endhighlight %} {% endhighlight %}
<!-- Abbreviations --> <!-- Abbreviations -->
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment