Browse Source

remove unused cofig from code

codecalm 8 months ago
parent
commit
9be6ea257c
43 changed files with 168 additions and 168 deletions
  1. 3 3
      docs/ui/base/typography.mdx
  2. 3 3
      docs/ui/components/alerts.mdx
  3. 1 1
      docs/ui/components/autosize.mdx
  4. 6 6
      docs/ui/components/badges.mdx
  5. 4 4
      docs/ui/components/breadcrumb.mdx
  6. 12 12
      docs/ui/components/buttons.mdx
  7. 7 7
      docs/ui/components/cards.mdx
  8. 6 6
      docs/ui/components/carousel.mdx
  9. 6 6
      docs/ui/components/charts.mdx
  10. 11 11
      docs/ui/components/countup.mdx
  11. 1 1
      docs/ui/components/datagrid.mdx
  12. 3 3
      docs/ui/components/divider.mdx
  13. 10 10
      docs/ui/components/dropdowns.mdx
  14. 3 3
      docs/ui/components/dropzone.mdx
  15. 2 2
      docs/ui/components/empty.mdx
  16. 3 3
      docs/ui/components/icons.mdx
  17. 2 2
      docs/ui/components/inline-player.mdx
  18. 4 4
      docs/ui/components/modals.mdx
  19. 10 10
      docs/ui/components/placeholder.mdx
  20. 1 1
      docs/ui/components/popover.mdx
  21. 5 5
      docs/ui/components/progress.mdx
  22. 1 1
      docs/ui/components/progressbg.mdx
  23. 1 1
      docs/ui/components/range-slider.mdx
  24. 4 4
      docs/ui/components/spinners.mdx
  25. 6 6
      docs/ui/components/statuses.mdx
  26. 5 5
      docs/ui/components/steps.mdx
  27. 2 2
      docs/ui/components/switch-icon.mdx
  28. 4 4
      docs/ui/components/tables.mdx
  29. 5 5
      docs/ui/components/tabs.mdx
  30. 1 1
      docs/ui/components/tinymce.mdx
  31. 1 1
      docs/ui/components/toasts.mdx
  32. 2 2
      docs/ui/components/tooltips.mdx
  33. 1 1
      docs/ui/forms/form-color-check.mdx
  34. 12 12
      docs/ui/forms/form-elements.mdx
  35. 1 1
      docs/ui/forms/form-helpers.mdx
  36. 1 1
      docs/ui/forms/form-input-mask.mdx
  37. 4 4
      docs/ui/forms/form-selectboxes.mdx
  38. 2 2
      docs/ui/forms/form-validation.mdx
  39. 5 5
      docs/ui/layout/page-headers.mdx
  40. 2 2
      docs/ui/layout/page-layouts.mdx
  41. 1 1
      docs/ui/plugins/flags.mdx
  42. 2 2
      docs/ui/plugins/payments.mdx
  43. 2 2
      docs/ui/utilities/interactions.mdx

+ 3 - 3
docs/ui/base/typography.mdx

@@ -106,7 +106,7 @@ Use the `hr` tag to represent a thematic break between paragraphs within one sec
 
 You can also add a label to a horizontal rule and align it as you see fit.
 
-```html code example vertical centered columns={2}
+```html example vertical centered columns={2}
 <p>
   Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
 </p>
@@ -257,7 +257,7 @@ Control the font smoothing of an element.
 
 Use the `.antialiased` utility to render text using subpixel antialiasing or use the `.subpixel-antialiased` utility to remove antialiasing.
 
-```html code example
+```html example
 <div class="antialiased">Text with antialiasing</div>
 <div class="subpixel-antialiased">Text without antialiasing</div>
 ```
@@ -280,7 +280,7 @@ To edit settings, press <kbd>ctrl</kbd> + <kbd>,</kbd> or <kbd>ctrl</kbd> + <kbd
 
 If you can't use the CSS classes you want or if you just want to use HTML tags, use the `.markdown` class in a container. It can handle almost any HTML tag.
 
-```html code example centered background="white" columns={2} height="30rem"
+```html example centered background="white" columns={2} height="30rem"
 <div class="markdown">
   <h1>Hello World</h1>
   <p>Lorem ipsum<sup>[1]</sup> dolor sit amet, consectetur adipiscing elit. Nulla accumsan, metus ultrices eleifend gravida, nulla nunc varius lectus, nec rutrum justo nibh eu lectus. Ut vulputate semper dui. Fusce erat odio, sollicitudin vel erat vel, interdum mattis neque. Sub<sub>script</sub> works as well!</p>

+ 3 - 3
docs/ui/components/alerts.mdx

@@ -38,7 +38,7 @@ Depending on the information you need to convey, you can use one of the followin
 
 Add a link to your alert message to redirect users to the details they need to complete or additional information they should read.
 
-```html example vertical code height="7rem"
+```html example vertical height="7rem"
 <div class="alert alert-danger m-0">
   This is a danger alert — <a href="#" class="alert-link">check it out</a>!
 </div>
@@ -255,7 +255,7 @@ Add an icon to your alert modal to make it more user-friendly and help users eas
 
 Add an avatar to your alert modal to make it more personalized.
 
-```html code example height="420px"
+```html example height="420px"
 <div class="alert alert-success" role="alert">
   <div class="d-flex">
     <div>
@@ -302,7 +302,7 @@ Add an avatar to your alert modal to make it more personalized.
 
 Add primary and secondary buttons to your alert modals if you want users to take a particular action based on the information included in the modal message.
 
-```html code example height="500px" scrollable
+```html example height="500px" scrollable
 <div class="alert alert-success alert-dismissible" role="alert">
   <h3 class="mb-1">Some Title</h3>
   <p>Lorem ipsum Minim ad pariatur eiusmod ea ut nulla aliqua est quis id dolore minim voluptate.</p>

+ 1 - 1
docs/ui/components/autosize.mdx

@@ -10,7 +10,7 @@ To be able to use the autosize in your application you will need to install the
 
 Add the autosize element to your input to make it automatically adjust to the length of a text as a user types it.
 
-```html code example centered columns={1} scrollable
+```html example centered columns={1} scrollable
 <label class="form-label">Autosize example</label>
 <textarea class="form-control" data-bs-toggle="autosize" placeholder="Type something…"></textarea>
 ```

+ 6 - 6
docs/ui/components/badges.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/badge/
 
 The default badges are square and come in the basic set of colors.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <span class="badge bg-blue">Blue</span>
 <span class="badge bg-azure">Azure</span>
 <span class="badge bg-indigo">Indigo</span>
@@ -25,7 +25,7 @@ The default badges are square and come in the basic set of colors.
 
 ## Headings
 
-```html code example height="240px"
+```html example height="240px"
 <h1>Example heading <span class="badge bg-secondary">New</span></h1>
 <h2>Example heading <span class="badge bg-secondary">New</span></h2>
 <h3>Example heading <span class="badge bg-secondary">New</span></h3>
@@ -36,7 +36,7 @@ The default badges are square and come in the basic set of colors.
 
 ## Outline badges
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <span class="badge badge-outline text-blue">blue</span>
 <span class="badge badge-outline text-azure">azure</span>
 <span class="badge badge-outline text-indigo">indigo</span>
@@ -55,7 +55,7 @@ The default badges are square and come in the basic set of colors.
 
 Use the `.badge-pill` class if you want to create a badge with rounded corners. Its width will adjust to the label text.
 
-```html code example centered separated height="7rem"
+```html example centered separated height="7rem"
 <span class="badge badge-pill bg-blue">1</span>
 <span class="badge badge-pill bg-azure">2</span>
 <span class="badge badge-pill bg-indigo">3</span>
@@ -74,7 +74,7 @@ Use the `.badge-pill` class if you want to create a badge with rounded corners.
 
 You can create a soft colour variant of a corresponding contextual badge variation, to make it look more subtle. Click [here](/docs/ui/colors) to see the list of available colors and choose ones that best suit your design.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <span class="badge bg-blue-lt">Blue</span>
 <span class="badge bg-azure-lt">Azure</span>
 <span class="badge bg-indigo-lt">Indigo</span>
@@ -93,7 +93,7 @@ You can create a soft colour variant of a corresponding contextual badge variati
 
 Place the badge within an `<a>` element if you want it to perform the function of a link and make it clickable.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <a href="#" class="badge bg-blue">Blue</a>
 <a href="#" class="badge bg-azure">Azure</a>
 <a href="#" class="badge bg-indigo">Indigo</a>

+ 4 - 4
docs/ui/components/breadcrumb.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/breadcrumb/
 
 Add the `:before` pseudo-element in `li` tags to use the default separators. The `active` modifier in a `li` tag will help you indicate the current page location and facilitate navigation within your website or app.
 
-```html code example centered
+```html example centered
 <ol class="breadcrumb" aria-label="breadcrumbs">
   <li class="breadcrumb-item"><a href="#">Home</a></li>
   <li class="breadcrumb-item"><a href="#">Library</a></li>
@@ -20,7 +20,7 @@ Add the `:before` pseudo-element in `li` tags to use the default separators. The
 
 If you wish to use different separators, modify the `$breadcrumb-variants` variable in the Tabler config. Depending on the aesthetics of your design, you can choose dots, bullets or arrows.
 
-```html code example centered
+```html example centered
 <ol class="breadcrumb breadcrumb-dots" aria-label="breadcrumbs">
   <li class="breadcrumb-item"><a href="#">Home</a></li>
   <li class="breadcrumb-item"><a href="#">Library</a></li>
@@ -28,7 +28,7 @@ If you wish to use different separators, modify the `$breadcrumb-variants` varia
 </ol>
 ```
 
-```html code example centered
+```html example centered
 <ol class="breadcrumb breadcrumb-arrows" aria-label="breadcrumbs">
   <li class="breadcrumb-item"><a href="#">Home</a></li>
   <li class="breadcrumb-item"><a href="#">Library</a></li>
@@ -36,7 +36,7 @@ If you wish to use different separators, modify the `$breadcrumb-variants` varia
 </ol>
 ```
 
-```html code example centered
+```html example centered
 <ol class="breadcrumb breadcrumb-bullets" aria-label="breadcrumbs">
   <li class="breadcrumb-item"><a href="#">Home</a></li>
   <li class="breadcrumb-item"><a href="#">Library</a></li>

+ 12 - 12
docs/ui/components/buttons.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/buttons/
 
 As one of the most common elements of UI design, buttons have a very important function of engaging users with your website or app and guiding them in their actions. Use the `.btn` classes with the `<button>` element and add additional styling that will make your buttons serve their purpose and draw users' attention.
 
-```html example code centered separated height="7rem"
+```html example centered separated height="7rem"
 <a href="#" class="btn" role="button">Link</a>
 <button class="btn">Button</button>
 <input type="button" class="btn" value="Input" />
@@ -20,7 +20,7 @@ As one of the most common elements of UI design, buttons have a very important f
 
 The standard button creates a white background and subtle hover animation. It's meant to look and behave as an interactive element of your page.
 
-```html example code centered separated height="7rem"
+```html example centered separated height="7rem"
 <a href="#" class="btn" role="button">Link</a>
 ```
 
@@ -28,7 +28,7 @@ The standard button creates a white background and subtle hover animation. It's
 
 Use the button classes that correspond to the function of your button. The big range of available colors will help you show your buttons' purpose and make them easy to spot.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <a href="#" class="btn btn-primary">Primary</a>
 <a href="#" class="btn btn-secondary">Secondary</a>
 <a href="#" class="btn btn-success">Success</a>
@@ -43,7 +43,7 @@ Use the button classes that correspond to the function of your button. The big r
 
 Make buttons look inactive to show that an action is possible once the user meets certain criteria, such as completing the required fields to submit a form.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <a href="#" class="btn btn-primary disabled">Primary</a>
 <a href="#" class="btn btn-secondary disabled">Secondary</a>
 <a href="#" class="btn btn-success disabled">Success</a>
@@ -58,7 +58,7 @@ Make buttons look inactive to show that an action is possible once the user meet
 
 Choose the right color for your button to make it go well with your design and draw users' attention. Button colors can have a big influence on users' decisions, which is why it's important to choose them based on the intended purpose.
 
-```html code example vertical centered separated scrollable height="15rem"
+```html example vertical centered separated scrollable height="15rem"
 <a href="#" class="btn btn-blue">Blue</a>
 <a href="#" class="btn btn-azure">Azure</a>
 <a href="#" class="btn btn-indigo">Indigo</a>
@@ -173,12 +173,12 @@ Replace the default modifier class with the `.btn-outline-*` class, if you want
 
 Add `.btn-lg` or `.btn-sm` to change the size of your button and differentiate those which should have primary focus from those of secondary importance. Adapt the button size to your design and encourage users to take actions.
 
-```html code example centered separated height="8rem"
+```html example centered separated height="8rem"
 <button type="button" class="btn btn-primary btn-lg">Large button</button>
 <button type="button" class="btn btn-lg">Large button</button>
 ```
 
-```html code example centered separated height="7rem"
+```html example centered separated height="7rem"
 <button type="button" class="btn btn-primary btn-sm">Small button</button>
 <button type="button" class="btn btn-sm">Small button</button>
 ```
@@ -782,7 +782,7 @@ Add the `.btn-loading` class to show a button's loading state, which can be usef
 
 Create a list of buttons using the `.btn-list` container to display different actions a user can take. If you add aditional styling, such as colours, you will be able to focus users' attention on a particular action or suggest the result.
 
-```html code example vertical centered columns={3} height="7rem"
+```html example vertical centered columns={3} height="7rem"
 <div class="btn-list">
   <a href="#" class="btn btn-success">Save changes</a>
   <a href="#" class="btn">Save and continue</a>
@@ -792,7 +792,7 @@ Create a list of buttons using the `.btn-list` container to display different ac
 
 If the list is long, it will be wrapped and some buttons will be moved to the next line, keeping them all evenly spaced.
 
-```html code example centered
+```html example centered
 <div class="btn-list">
   <a href="#" class="btn">One</a>
   <a href="#" class="btn">Two</a>
@@ -818,21 +818,21 @@ If the list is long, it will be wrapped and some buttons will be moved to the ne
 
 Use the `.text-center` or the `.text-end` modifiers to change the buttons' alignment and place them where they suit best.
 
-```html code example vertical centered columns={3} height="7rem"
+```html example vertical centered columns={3} height="7rem"
 <div class="btn-list justify-content-center">
   <a href="#" class="btn">Save and continue</a>
   <a href="#" class="btn btn-primary">Save changes</a>
 </div>
 ```
 
-```html code example vertical centered columns={3} height="7rem"
+```html example vertical centered columns={3} height="7rem"
 <div class="btn-list justify-content-end">
   <a href="#" class="btn">Save and continue</a>
   <a href="#" class="btn btn-primary">Save changes</a>
 </div>
 ```
 
-```html code example vertical centered columns={3} height="7rem"
+```html example vertical centered columns={3} height="7rem"
 <div class="btn-list">
   <a href="#" class="btn btn-outline-danger me-auto">Delete</a>
   <a href="#" class="btn">Save and continue</a>

+ 7 - 7
docs/ui/components/cards.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/card/
 
 Use the `.card` and `.card-body` classes to create a card and use it as the basis for a more advanced card design. A card is a perfect way to organize content and make it look neat and tidy.
 
-```html example code centered columns={1} background="base"
+```html example centered columns={1} background="base"
 <div class="card">
   <div class="card-body">
     <p>This is some text within a card body.</p>
@@ -56,7 +56,7 @@ Cards with the `.card-sm` class are well suited for small items such as widgets,
 
 Add a title to your card by including the `.card-title` class within `.card-body`. You can also place the title inside the `.card-header` element to separate the title from the content with a horizontal line.
 
-```html code example vertical centered separated height={400} background="base"
+```html example vertical centered separated height={400} background="base"
 <div class="card">
   <div class="card-body">
     <h3 class="card-title">Card title</h3>
@@ -77,7 +77,7 @@ Add a title to your card by including the `.card-title` class within `.card-body
 
 To create a more visually appealing card, add a title and an image. Thanks to that, the card will go well with your interface design and draw users' attention.
 
-```html example centered columns={1} height={500} code background="base"
+```html example centered columns={1} height={500} background="base"
 <div class="card">
   <!-- Photo -->
   <div class="img-responsive img-responsive-21x9 card-img-top" style="background-image: url(/samples/photos/cup-of-coffee-and-an-open-book.jpg)"></div>
@@ -93,7 +93,7 @@ To create a more visually appealing card, add a title and an image. Thanks to th
 
 Add an image to your blog post card to make it eye-catching. You can do it by adding the image in the `.card-img-top` class. Thanks to the `.d-flex` and `.flex-column` classes within `.card-body`, the author details will be displayed at the bottom of the card.
 
-```html example centered columns={1} height={600} code background="base"
+```html example centered columns={1} height={600} background="base"
 <div class="card d-flex flex-column">
   <a href="#">
     <img class="card-img-top" src="/samples/photos/book-on-the-grass.jpg" alt="" />
@@ -123,7 +123,7 @@ Add an image to your blog post card to make it eye-catching. You can do it by ad
 
 Add the `.row-deck` class to `.row`, if you want to display several cards next to one another. Thanks to that, they will all have the same height.
 
-```html code example centered height="220px" background="base"
+```html example centered height="220px" background="base"
 <div class="row row-deck">
   <div class="col-md-4">
     <div class="card">
@@ -147,7 +147,7 @@ Add the `.row-deck` class to `.row`, if you want to display several cards next t
 
 You can also add an image on the left side of the card. To do it, add the `.card-aside` class to the element with the `.card` class. Then add the image in the `.card-aside-column` element and it will be automatically centered and scaled to the right size.
 
-```html example columns={2} centered height={400} code background="base"
+```html example columns={2} centered height={400} background="base"
 <div class="card d-flex flex-column">
   <div class="row row-0 flex-fill">
     <div class="col-md-3">
@@ -231,7 +231,7 @@ Add a status color to your card, either at the top or on the side of the card, t
 
 Use the `card-stacked` class to stack up multiple cards, if you want to save screen space or create a visually appealing effect.
 
-```html code example columns={1} centered height={300} background="base"
+```html example columns={1} centered height={300} background="base"
 <div class="card card-stacked">
   <div class="card-body">
     <h3 class="card-title">Stacked card</h3>

+ 6 - 6
docs/ui/components/carousel.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/carousel/
 
 Use a carousel to make your website design more visually appealing for users. In the default carousel design, respective elements slide automatically and users can go to the next slide by clicking an arrow.
 
-```html code example centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-sample" class="carousel slide" data-bs-ride="carousel">
   <div class="carousel-indicators">
     <button type="button" data-bs-target="#carousel-sample" data-bs-slide-to="0" class="active"></button>
@@ -49,7 +49,7 @@ Use a carousel to make your website design more visually appealing for users. In
 
 You can replace the standard indicators with dots. Just add the `carousel-indicators-dot` class to your carousel:
 
-```html code example centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-indicators-dot" class="carousel slide carousel-fade" data-bs-ride="carousel">
   <div class="carousel-indicators carousel-indicators-dot">
     <button type="button" data-bs-target="#carousel-indicators-dot" data-bs-slide-to="0" class="active"></button>
@@ -82,7 +82,7 @@ You can replace the standard indicators with dots. Just add the `carousel-indica
 
 The syntax is similar with thumbnails. Add class `carousel-indicators-thumb` and add `background-image` to element `[data-bs-target]`. Default thumbnails have an aspect ratio of 1:1. To change this use `ratio` utils.
 
-```html example code centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-indicators-thumb" class="carousel slide carousel-fade" data-bs-ride="carousel">
   <div class="carousel-indicators carousel-indicators-thumb">
     <button type="button" data-bs-target="#carousel-indicators-thumb" data-bs-slide-to="0" class="ratio ratio-4x3 active" style="background-image: url(/samples/photos/group-of-people-sightseeing-in-the-city.jpg)"></button>
@@ -115,7 +115,7 @@ The syntax is similar with thumbnails. Add class `carousel-indicators-thumb` and
 
 To make the indicators go to the right side, add the `carousel-indicators-vertical` class. You can combine it with other classes that are responsible for dots or thumbnails.
 
-```html code example centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-indicators-dot-vertical" class="carousel slide carousel-fade" data-bs-ride="carousel">
   <div class="carousel-indicators carousel-indicators-vertical carousel-indicators-dot">
     <button type="button" data-bs-target="#carousel-indicators-dot-vertical" data-bs-slide-to="0" class="active"></button>
@@ -146,7 +146,7 @@ To make the indicators go to the right side, add the `carousel-indicators-vertic
 
 Likewise, you can add thumbnails on the right side:
 
-```html code example centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-indicators-thumb-vertical" class="carousel slide carousel-fade" data-bs-ride="carousel">
   <div class="carousel-indicators carousel-indicators-vertical carousel-indicators-thumb">
     <button type="button" data-bs-target="#carousel-indicators-thumb-vertical" data-bs-slide-to="0" class="ratio ratio-4x3 active" style="background-image: url(/samples/photos/finances-us-dollars-and-bitcoins-currency-money.jpg)"></button>
@@ -179,7 +179,7 @@ Likewise, you can add thumbnails on the right side:
 
 Add captions to your slides easily with the `.carousel-caption` element within any `.carousel-item`. To make the text more readable on the image you can add `carousel-caption-background` which will add a black overlay over the image.
 
-```html code example centered columns={2} height="35rem"
+```html example centered columns={2} height="35rem"
 <div id="carousel-captions" class="carousel slide" data-bs-ride="carousel">
   <div class="carousel-inner">
     <div class="carousel-item active">

+ 6 - 6
docs/ui/components/charts.mdx

@@ -12,7 +12,7 @@ See also the [ApexCharts](https://apexcharts.com/) documentation.
 
 Line charts are a typical pictorial representation that depicts trends and behaviors over time.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-demo-line" class="chart-lg"></div>
@@ -106,7 +106,7 @@ Line charts are a typical pictorial representation that depicts trends and behav
 
 Area charts are used to represent quantitative variations.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-demo-area" class="chart-lg"></div>
@@ -204,7 +204,7 @@ Area charts are used to represent quantitative variations.
 
 A bar chart is the best tool for displaying comparisons between categories of data.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-demo-bar" class="chart-lg"></div>
@@ -312,7 +312,7 @@ A bar chart is the best tool for displaying comparisons between categories of da
 
 Pie charts are an instrumental visualization tool useful in expressing data and information in terms of percentages, ratio.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-demo-pie" class="chart-lg"></div>
@@ -372,7 +372,7 @@ Pie charts are an instrumental visualization tool useful in expressing data and
 
 Heatmap is a visualization tool that employs color the way a bar chart employs height and width in representing data.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-demo-pie" class="chart-lg"></div>
@@ -430,7 +430,7 @@ Heatmap is a visualization tool that employs color the way a bar chart employs h
 
 ## Advanced example
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <div class="card">
   <div class="card-body">
     <div id="chart-social-referrals" class="chart-lg"></div>

+ 11 - 11
docs/ui/components/countup.mdx

@@ -10,7 +10,7 @@ To be able to use the countup in your application you will need to install the c
 
 To create a countup, add `data-countup` to any HTML text tag and specify the number which is to be reached. The animation will be triggered as soon as the number enters the viewport.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>30000</h1>
@@ -20,7 +20,7 @@ To create a countup, add `data-countup` to any HTML text tag and specify the num
 
 Set the `duration` to determine how long the animation should take. By default, the duration is set to 2 seconds, but you can modify it as you wish.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>30000</h1>
@@ -33,7 +33,7 @@ Set the `duration` to determine how long the animation should take. By default,
 By default the countup will start from zero. If you want to set a different start value use `startVal`.
 You can also set the start value to be greater than the final value, so that it counts down instead of up.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup='{"startVal":12345}'>30000</h1>
@@ -44,7 +44,7 @@ You can also set the start value to be greater than the final value, so that it
 
 Set how many decimal numbers should be displayed using `decimalPlaces`.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>3.123</h1>
@@ -57,7 +57,7 @@ Set how many decimal numbers should be displayed using `decimalPlaces`.
 
 Disable easing using `"useEasing": false`. Easing is set to `true` by default, so that the animation speed changes over the course of its duration.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>30000</h1>
@@ -68,7 +68,7 @@ Disable easing using `"useEasing": false`. Easing is set to `true` by default, s
 
 Disable grouping using `"useGrouping": false`. Grouping is set to `true` by default and the default group separator is a comma.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>30000</h1>
@@ -79,7 +79,7 @@ Disable grouping using `"useGrouping": false`. Grouping is set to `true` by defa
 
 You can change the default comma group separator using `separator` and specifying the one you wish to use.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup>3000000</h1>
@@ -92,7 +92,7 @@ You can change the default comma group separator using `separator` and specifyin
 
 You can also change the decimal separator which is set to a full stop by default. To do it, use `decimal` and specify the decimal separator of your choice.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup='{"decimalPlaces":2}'>3.12</h1>
@@ -105,7 +105,7 @@ You can also change the decimal separator which is set to a full stop by default
 
 Set the countup prefix using `prefix` and specifying the prefix you want to add, for instance a currency symbol.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup='{"prefix":"$"}'>30000</h1>
@@ -117,7 +117,7 @@ Set the countup prefix using `prefix` and specifying the prefix you want to add,
 
 Set the countup suffix using `suffix`.
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup='{"suffix":"%"}'>30</h1>
@@ -127,7 +127,7 @@ Set the countup suffix using `suffix`.
 
 Of course you can mix all of these:
 
-```html code example
+```html example
 <script src="$TABLER_CDN/dist/libs/countup.js/dist/countUp.js"></script>
 
 <h1 data-countup='{"duration":6,"startVal":12345,"decimalPlaces":2,"separator":" ","prefix":"$"}'>64547834.76</h1>

+ 1 - 1
docs/ui/components/datagrid.mdx

@@ -3,7 +3,7 @@ title: Data grid
 description: Use the data grid component to display detailed information about your product. The data is displayed as a column of items consisting of a title and content.
 ---
 
-```html example code vcentered height="460px"
+```html example vcentered height="460px"
 <div class="datagrid">
   <div class="datagrid-item">
     <div class="datagrid-title">Registrar</div>

+ 3 - 3
docs/ui/components/divider.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/dropdowns/#dividers
 
 Use dividers to visually separate content into parts. You can use a line only or add text that will be centered by default.
 
-```html code example
+```html example
 <p>
   Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, dolore dolores doloribus est ex.
 </p>
@@ -22,7 +22,7 @@ Use dividers to visually separate content into parts. You can use a line only or
 
 You can modify the position of the text which is to be included in a separator and make it left- or right-aligned. Otherwise, the text will remain centered.
 
-```html code example height="380px"
+```html example height="380px"
 <p>
   Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, dolore dolores doloribus est ex.
 </p>
@@ -44,7 +44,7 @@ You can modify the position of the text which is to be included in a separator a
 
 Customize the color of dividers to make them go well with your design. Click [here](/docs/ui/colors) to see the list of available colors.
 
-```html code example height="380px"
+```html example height="380px"
 <p>
   Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, dolore dolores doloribus est ex.
 </p>

+ 10 - 10
docs/ui/components/dropdowns.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/dropdowns
 
 With small markup changes, you can turn any `.btn` into a dropdown toggle and use it to display more options for users to choose from. Start with the default dropdown and then use additional classes to make your dropdown more user-friendly.
 
-```html example code height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -23,7 +23,7 @@ With small markup changes, you can turn any `.btn` into a dropdown toggle and us
 
 Use dropdown dividers to separate groups of dropdown items for greater clarity.
 
-```html example code height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -43,7 +43,7 @@ Use dropdown dividers to separate groups of dropdown items for greater clarity.
 
 Make a dropdown item look active, so that it highlights when a user hovers over a given option.
 
-```html example code height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -62,7 +62,7 @@ Make a dropdown item look active, so that it highlights when a user hovers over
 
 Make a dropdown item look disabled to display options which are currently not available but can activate once certain conditions are met.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -81,7 +81,7 @@ Make a dropdown item look disabled to display options which are currently not av
 
 Add a dropdown header to group dropdown items into sections and name them accordingly.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -100,7 +100,7 @@ Add a dropdown header to group dropdown items into sections and name them accord
 
 Use icons in your dropdowns to add more visual content and make the options easy to identify for users.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -129,7 +129,7 @@ Use icons in your dropdowns to add more visual content and make the options easy
 
 Add an arrow that points at the dropdown button.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu dropdown-menu-arrow">
@@ -147,7 +147,7 @@ Add an arrow that points at the dropdown button.
 
 Add a badge to your dropdown items to show additional information related to an item or distinguish it from other elements.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -167,7 +167,7 @@ Add a badge to your dropdown items to show additional information related to an
 
 Use dropdowns with checkboxes to allow users to select options from a predefined list. Dropdowns with checkboxes are particularly useful for filtering.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu">
@@ -182,7 +182,7 @@ Use dropdowns with checkboxes to allow users to select options from a predefined
 
 Make your dropdown suit the dark mode of your website or software.
 
-```html code example height="16rem"
+```html example height="16rem"
 <div class="dropdown">
   <a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">Open dropdown</a>
   <div class="dropdown-menu dropdown-menu-arrow bg-dark text-white">

+ 3 - 3
docs/ui/components/dropzone.mdx

@@ -6,7 +6,7 @@ description: Dropzone is a simple JavaScript library that helps you add file dra
 
 ## Default Dropzone
 
-```html example code vendors height="240px"
+```html example vendors height="240px"
 <form class="dropzone" id="dropzone-default" action="." autocomplete="off" novalidate>
   <div class="fallback">
     <input name="file" type="file" />
@@ -24,7 +24,7 @@ description: Dropzone is a simple JavaScript library that helps you add file dra
 
 ## Add multiple files
 
-```html example code vendors height="240px"
+```html example vendors height="240px"
 <form class="dropzone" id="dropzone-mulitple" action="." autocomplete="off" novalidate>
   <div class="fallback">
     <input name="file" type="file" multiple />
@@ -42,7 +42,7 @@ description: Dropzone is a simple JavaScript library that helps you add file dra
 
 ## Custom Dropzone
 
-```html example code vendors height="240px"
+```html example vendors height="240px"
 <form class="dropzone" id="dropzone-custom" action="." autocomplete="off" novalidate>
   <div class="fallback">
     <input name="file" type="file" />

+ 2 - 2
docs/ui/components/empty.mdx

@@ -7,7 +7,7 @@ description: Empty states or blank pages are commonly used as placeholders for f
 
 Use the default empty state to engage users in the critical moments of their experience with your website or app. A good empty state screen should let users know what is happening and what they should do next as well as encourage them to take action.
 
-```html code example height="300px"
+```html example height="300px"
 <div class="empty">
   <div class="empty-icon">
     <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
@@ -39,7 +39,7 @@ Use the default empty state to engage users in the critical moments of their exp
 
 Make your empty state screen more attractive and engaging by adding an illustration. Thanks to a more personalized design, you will improve your brand image and make your website or app more user friendly.
 
-```html code example height="300px"
+```html example height="300px"
 <div class="empty">
   <div class="empty-img"><img src="..." height="128" alt="" />
   </div>

+ 3 - 3
docs/ui/components/icons.mdx

@@ -6,7 +6,7 @@ banner: icons
 
 ## Base icon
 
-```html code example centered separated
+```html example centered separated
 <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-heart" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
   <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
   <path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572"></path>
@@ -39,7 +39,7 @@ banner: icons
 
 ## Filled icons
 
-```html code example centered separated
+```html example centered separated
 <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-heart-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
   <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
   <path d="M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z" stroke-width="0" fill="currentColor"></path>
@@ -63,7 +63,7 @@ banner: icons
 
 ## Icon colors
 
-```html example code centered separated
+```html example centered separated
 <span class="text-red">
   <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-heart-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
     <path stroke="none" d="M0 0h24v24H0z" fill="none"></path>

+ 2 - 2
docs/ui/components/inline-player.mdx

@@ -6,7 +6,7 @@ description: A simple, lightweight, accessible and customizable HTML5, YouTube a
 
 ## Sample demo
 
-```html example code vendors height="500px"
+```html example vendors height="500px"
 <div id="player-youtube" data-plyr-provider="youtube" data-plyr-embed-id="dQw4w9WgXcQ"></div>
 
 <script src="$TABLER_CDN/dist/libs/plyr/dist/plyr.min.js"></script>
@@ -19,7 +19,7 @@ description: A simple, lightweight, accessible and customizable HTML5, YouTube a
 
 ## Vimeo file
 
-```html example code vendors height="500px"
+```html example vendors height="500px"
 <div id="player-vimeo" data-plyr-provider="vimeo" data-plyr-embed-id="515937365"></div>
 
 <script src="$TABLER_CDN/dist/libs/plyr/dist/plyr.min.js"></script>

+ 4 - 4
docs/ui/components/modals.mdx

@@ -5,7 +5,7 @@ description: Use Bootstrap’s JavaScript modal plugin to add dialogs to your si
 
 ## Default markup
 
-```html example code centered height="30rem"
+```html example centered height="30rem"
 <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
   Launch demo modal
 </button>
@@ -31,7 +31,7 @@ description: Use Bootstrap’s JavaScript modal plugin to add dialogs to your si
 
 ## Prompt and alert
 
-```html example code centered height="30rem"
+```html example centered height="30rem"
 <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
   Launch alert modal
 </button>
@@ -67,7 +67,7 @@ description: Use Bootstrap’s JavaScript modal plugin to add dialogs to your si
 </div>
 ```
 
-```html example code centered height="30rem"
+```html example centered height="30rem"
 <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
   Launch demo modal
 </button>
@@ -109,7 +109,7 @@ description: Use Bootstrap’s JavaScript modal plugin to add dialogs to your si
 
 ## Modal with form
 
-```html example code centered height="30rem"
+```html example centered height="30rem"
 <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
   Launch modal with form
 </button>

+ 10 - 10
docs/ui/components/placeholder.mdx

@@ -7,7 +7,7 @@ description: Placeholder is used to reserve space for content that soon will app
 
 Placeholder lines can contain have lines of text. Their length is different and depends on the `col-` class.
 
-```html code example columns={1}
+```html example columns={1}
 <div class="placeholder col-9"></div>
 <div class="placeholder col-11"></div>
 <div class="placeholder col-10"></div>
@@ -16,7 +16,7 @@ Placeholder lines can contain have lines of text. Their length is different and
 
 However, it may be useful, however, to specify the full width in order to fit the content more effectively.
 
-```html code example columns={1}
+```html example columns={1}
 <div class="placeholder col-12"></div>
 <div class="placeholder col-12"></div>
 <div class="placeholder col-12"></div>
@@ -25,7 +25,7 @@ However, it may be useful, however, to specify the full width in order to fit th
 
 You can also move the lines to right or to center:
 
-```html code example columns={1}
+```html example columns={1}
 <div class="text-end">
   <div class="placeholder col-11"></div>
   <div class="placeholder col-10"></div>
@@ -42,7 +42,7 @@ You can also move the lines to right or to center:
 
 A placeholder can contain also a header element looks like header:
 
-```html code example columns={1}
+```html example columns={1}
 <div class="placeholder col-9 mb-3"></div>
 <div class="placeholder placeholder-xs col-10"></div>
 <div class="placeholder placeholder-xs col-11"></div>
@@ -52,7 +52,7 @@ A placeholder can contain also a header element looks like header:
 
 You can make your placeholder item look like an avatar.
 
-```html code example columns={1}
+```html example columns={1}
 <div class="row">
   <div class="col-auto">
     <div class="avatar placeholder"></div>
@@ -66,7 +66,7 @@ You can make your placeholder item look like an avatar.
 
 The size of avatars is exactly the same as a regular avatar.
 
-```html code example centered separated
+```html example centered separated
 <div class="avatar avatar-xl placeholder"></div>
 <div class="avatar avatar-lg placeholder"></div>
 <div class="avatar avatar-md placeholder"></div>
@@ -81,7 +81,7 @@ You can use a placeholder, which will look like a picture. You can use the `rati
 
 You can also use the `ratio` component, and get the image in the right proportions.
 
-```html code example columns={1} height={500} scrollable
+```html example columns={1} height={500} scrollable
 <div class="ratio ratio-1x1 placeholder">
   <div class="placeholder-image"></div>
 </div>
@@ -129,7 +129,7 @@ By default, the `placeholder` uses `currentColor`. This can be overridden with a
 
 The size of `.placeholders` are based on the typographic style of the parent element. Customize them with sizing modifiers: `.placeholder-lg`, `.placeholder-sm`, or `.placeholder-xs`.
 
-```html code example columns={1}
+```html example columns={1}
 <span class="placeholder col-12 placeholder-lg"></span>
 <span class="placeholder col-12"></span>
 <span class="placeholder col-12 placeholder-sm"></span>
@@ -140,7 +140,7 @@ The size of `.placeholders` are based on the typographic style of the parent ele
 
 Animate placeholders with `.placeholder-glow` or `.placeholder-wave` to better convey the perception of something being actively loaded.
 
-```html code example columns={1}
+```html example columns={1}
 <p class="placeholder-glow">
   <span class="placeholder col-12"></span>
 </p>
@@ -153,7 +153,7 @@ Animate placeholders with `.placeholder-glow` or `.placeholder-wave` to better c
 
 See in the following examples how else you can use the placeholder component
 
-```html code example columns={1} height={1000} separated vertical scrollable
+```html example columns={1} height={1000} separated vertical scrollable
 <div class="card placeholder-glow">
   <div class="ratio ratio-21x9 card-img-top placeholder"></div>
   <div class="card-body">

+ 1 - 1
docs/ui/components/popover.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/popovers
 
 To create a default popover use:
 
-```html code example centered
+```html example centered
 <button type="button" class="btn" data-bs-toggle="popover" title="Popover title" data-bs-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
 ```
 

+ 5 - 5
docs/ui/components/progress.mdx

@@ -26,7 +26,7 @@ To create a default progress bar, add a `.progress` class to a `<div>` element.
 
 Using Bootstrap’s typical naming structure, you can create a standard progress bar or scale it up or down to different sizes based on what’s needed.
 
-```html code example columns={1} centered
+```html example columns={1} centered
 <div class="progress progress-sm">
   <div class="progress-bar" style="width: 57%" role="progressbar" aria-valuenow="57" aria-valuemin="0" aria-valuemax="100" aria-label="57% Complete">
     <span class="visually-hidden">57% Complete</span>
@@ -38,7 +38,7 @@ Using Bootstrap’s typical naming structure, you can create a standard progress
 
 Remove the displayed value by adding the `.visually-hidden` class.
 
-```html code example columns={1} centered
+```html example columns={1} centered
 <div class="progress">
   <div class="progress-bar" style="width: 75%" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" aria-label="75% Complete">
     <span class="visually-hidden">75% Complete</span>
@@ -50,7 +50,7 @@ Remove the displayed value by adding the `.visually-hidden` class.
 
 You can create a progress bar which shows indeterminate progress by adding `.progress-bar-indeterminate` to the `.progress-bar` element.
 
-```html code example columns={1} centered
+```html example columns={1} centered
 <div class="progress progress-sm">
   <div class="progress-bar progress-bar-indeterminate"></div>
 </div>
@@ -60,7 +60,7 @@ You can create a progress bar which shows indeterminate progress by adding `.pro
 
 You can also use native HTML5 `<progress>` element.
 
-```html code example columns={1} centered
+```html example columns={1} centered
 <progress class="progress progress-sm" value="15" max="100" />
 ```
 
@@ -68,7 +68,7 @@ You can also use native HTML5 `<progress>` element.
 
 Customize the color of the progress bar to suit your design. Click [here](/docs/ui/colors) to see the list of available colors.
 
-```html code example columns={1} centered separated
+```html example columns={1} centered separated
 <div class="progress">
   <div class="progress-bar bg-red" style="width: 24%" role="progressbar" aria-valuenow="24" aria-valuemin="0" aria-valuemax="100" aria-label="24% Complete">
     <span class="visually-hidden">24% Complete</span>

+ 1 - 1
docs/ui/components/progressbg.mdx

@@ -3,7 +3,7 @@ title: Progress background
 description: By using a progress bar component as a background element, designers can create a dynamic and engaging visual experience for users. For example, the progress bar could be used to represent the completion of a long-term goal or project, such as a fundraising campaign or construction project. As users interact with the page, the progress bar could gradually fill up, creating a sense of momentum and progress.
 ---
 
-```html code example vertical centered columns={1}
+```html example vertical centered columns={1}
 <div class="progressbg">
   <div class="progress progressbg-progress">
     <div class="progress-bar bg-primary-lt" style="width: 35%" role="progressbar" aria-valuenow="35" aria-valuemin="0" aria-valuemax="100" aria-label="35% Complete">

+ 1 - 1
docs/ui/components/range-slider.mdx

@@ -9,7 +9,7 @@ All options and features can be found [**here**](https://refreshless.com/nouisli
 
 ## Basic range slider
 
-```html code example centered
+```html example centered
 <div data-slider='{"js-name": "slider0","start": 50,"range": {"min": 0,"max": 100}}'></div>
 <p demo-slider="slider0"></p>
 ```

+ 4 - 4
docs/ui/components/spinners.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/spinners/
 
 Use the default spinner to notify users that an action they have taken is in progress, helping them avoid confusion.
 
-```html example code centered
+```html example centered
 <div class="spinner-border"></div>
 ```
 
@@ -40,7 +40,7 @@ Choose one of the available colors to customize the spinner and make it suit you
 
 Choose the size of your spinner. You can use the default size or use the `spinner-border-sm` class to display a smaller spinner.
 
-```html example code centered separated
+```html example centered separated
 <div class="spinner-border" role="status"></div>
 <div class="spinner-border spinner-border-sm" role="status"></div>
 ```
@@ -49,7 +49,7 @@ Choose the size of your spinner. You can use the default size or use the `spinne
 
 Use the growing spinner, if you are looking for a more original design than a border spinner. The spinner grows to show the loading state.
 
-```html example code centered
+```html example centered
 <div class="spinner-grow" role="status"></div>
 ```
 
@@ -108,7 +108,7 @@ Use buttons with spinners to notify users that an action they have taken by clic
 <h1>Loading<span class="animated-dots"></span></h1>
 ```
 
-```html example centered code separated
+```html example centered separated
 <a href="#" class="btn btn-primary">
   Loading<span class="animated-dots"></span>
 </a>

+ 6 - 6
docs/ui/components/statuses.mdx

@@ -28,7 +28,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ## Status with dot
 
-```html example code vertical height="7rem"
+```html example vertical height="7rem"
 <span class="status status-blue">
   <span class="status-dot"></span>
   Blue
@@ -81,7 +81,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ### Animated dot
 
-```html example code vertical height="7rem"
+```html example vertical height="7rem"
 <span class="status status-blue">
   <span class="status-dot status-dot-animated"></span>
   Blue
@@ -134,7 +134,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ## Lite status
 
-```html example code vertical height="7rem"
+```html example vertical height="7rem"
 <span class="status status-blue status-lite">
   <span class="status-dot"></span>
   Blue
@@ -187,7 +187,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ## Status dots
 
-```html code example centered separated height="7rem"
+```html example centered separated height="7rem"
 <span class="status-dot status-blue"></span>
 <span class="status-dot status-azure"></span>
 <span class="status-dot status-indigo"></span>
@@ -204,7 +204,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ### Animated dots
 
-```html code example centered separated height="7rem"
+```html example centered separated height="7rem"
 <span class="status-dot status-dot-animated status-blue"></span>
 <span class="status-dot status-dot-animated status-azure"></span>
 <span class="status-dot status-dot-animated status-indigo"></span>
@@ -221,7 +221,7 @@ description: Status dots are particularly useful if you want to make an interfac
 
 ## Status indicator
 
-```html code example vertical centered height="7rem"
+```html example vertical centered height="7rem"
 <span class="status-indicator status-blue status-indicator-animated">
   <span class="status-indicator-circle"></span>
   <span class="status-indicator-circle"></span>

+ 5 - 5
docs/ui/components/steps.mdx

@@ -10,7 +10,7 @@ Steps show users where they are within a process, what steps they have already c
 
 Use the `steps` class to create the default progress tracker and name the steps accordingly.
 
-```html code example
+```html example
 <div class="steps">
   <a href="#" class="step-item">
     Step 1
@@ -31,7 +31,7 @@ Use the `steps` class to create the default progress tracker and name the steps
 
 Add tooltips, if you want to provide users with additional information about the steps they are expected to complete. Tooltips are displayed when a user hovers over a given step and help clarify what might not be clear from the interface.
 
-```html code example
+```html example
 <div class="steps">
   <a href="#" class="step-item" data-bs-toggle="tooltip" title="Step 1 description">
     Step 1
@@ -52,7 +52,7 @@ Add tooltips, if you want to provide users with additional information about the
 
 You can customize the default progress indicator by changing the color to one that better suits your design. Click [here](/docs/ui/colors) to see the range of available colors.
 
-```html code example
+```html example
 <div class="steps steps-green">
   <a href="#" class="step-item">
     Step 1
@@ -87,7 +87,7 @@ You can customize the default progress indicator by changing the color to one th
 
 For designs with limited space, use progress indicators without titles and add tooltips to provide the necessary details.
 
-```html code example
+```html example
 <div class="steps">
   <a href="#" class="step-item" data-bs-toggle="tooltip" title="Step 1 description"></a>
   <a href="#" class="step-item" data-bs-toggle="tooltip" title="Step 2 description"></a>
@@ -100,7 +100,7 @@ For designs with limited space, use progress indicators without titles and add t
 
 Use the `steps-counter` class to create a progress tracker with numbers instead of titles and change the color to customize it.
 
-```html code example
+```html example
 <div class="steps steps-counter steps-lime">
   <a href="#" class="step-item"></a>
   <a href="#" class="step-item active"></a>

+ 2 - 2
docs/ui/components/switch-icon.mdx

@@ -8,7 +8,7 @@ banner: icons
 
 To replace the icons, all should add `active` class to the `switch-icon` component.
 
-```html code example centered
+```html example centered
 <button class="switch-icon" data-bs-toggle="switch-icon">
   <span class="switch-icon-a text-secondary">
     <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-heart" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
@@ -29,7 +29,7 @@ To replace the icons, all should add `active` class to the `switch-icon` compone
 
 You can also add a fancy animation to add variety to your button. See demo below:
 
-```html example code centered separated
+```html example centered separated
 <button class="switch-icon" data-bs-toggle="switch-icon">
   <span class="switch-icon-a text-secondary">
     <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-circle" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">

+ 4 - 4
docs/ui/components/tables.mdx

@@ -10,7 +10,7 @@ The basic table design has light padding and the presented data is separated wih
 
 The `.table` class adds basic styling to a table:
 
-```html code example height="360px" scrollable
+```html example height="360px" scrollable
 <div class="table-responsive">
   <table class="table table-vcenter">
     <thead>
@@ -97,7 +97,7 @@ The `.table` class adds basic styling to a table:
 
 Use the `.table-responsive` class across each breakpoint for horizontal scrolling tables. If you want to create responsive tables up to a specific breakpoint, use `.table-responsive{-sm|-md|-lg|-xl}`. From that breakpoint and up, the table will behave normally, rather than scroll horizontally.
 
-```html code example height="12rem"
+```html example height="12rem"
 <table class="table table-responsive">
   <thead>
     <tr>
@@ -289,7 +289,7 @@ If you don't want the table cell content to wrap to another line, use the `table
 
 ## Table Variants
 
-```html code example height="360px" scrollable
+```html example height="360px" scrollable
 <table class="table">
   <thead>
     <tr>
@@ -350,7 +350,7 @@ If you don't want the table cell content to wrap to another line, use the `table
 
 ## Table with sticky header
 
-```html example code scrollable
+```html example scrollable
 <table class="table">
   <thead class="sticky-top">
     <tr>

+ 5 - 5
docs/ui/components/tabs.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/navs/
 
 Use tabs to let users access different sections within one context quickly and with ease. In the default design, the current tab is highlighted, which makes the interface clear and user-friendly.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="card">
   <div class="card-header">
     <ul class="nav nav-tabs card-header-tabs" data-bs-toggle="tabs">
@@ -39,7 +39,7 @@ Use tabs to let users access different sections within one context quickly and w
 
 Add icons to your tab labels, if you want to use a visual element and make the tab content easier to identify.
 
-```html example code centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="card">
   <div class="card-header">
     <ul class="nav nav-tabs card-header-tabs" data-bs-toggle="tabs">
@@ -91,7 +91,7 @@ Add icons to your tab labels, if you want to use a visual element and make the t
 
 Use tabs without label names to save space and make the tab content easy to recognize for international users.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="card">
   <div class="card-header">
     <ul class="nav nav-tabs card-header-tabs" data-bs-toggle="tabs">
@@ -148,7 +148,7 @@ Use tabs without label names to save space and make the tab content easy to reco
 
 Make one or more of your tabs into a dropdown to add more options within one element.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="card">
   <div class="card-header">
     <ul class="nav nav-tabs card-header-tabs" data-bs-toggle="tabs">
@@ -190,7 +190,7 @@ Make one or more of your tabs into a dropdown to add more options within one ele
 
 Add the `nav-fill` class to make the tabs take up the full space of the parent element.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="card">
   <div class="card-header">
     <ul class="nav nav-tabs card-header-tabs nav-fill" data-bs-toggle="tabs">

+ 1 - 1
docs/ui/components/tinymce.mdx

@@ -10,7 +10,7 @@ description: The WYSIWYG editor that is flexible, customizable, and designed wit
 
 Initialize TinyMCE 6 on any element (or elements) on the web page by passing an object containing a selector value to `tinymce.init()`. The selector value can be any valid CSS selector.
 
-```html example code centered columns={2} height="25rem"
+```html example centered columns={2} height="25rem"
 <form method="post">
   <textarea id="tinymce-default">Hello, <b>Tabler</b>!</textarea>
 </form>

+ 1 - 1
docs/ui/components/toasts.mdx

@@ -44,7 +44,7 @@ Toasts blend over the elements they appear over. If a browser supports the `back
 
 Stack multiple toasts together by putting them within one `.toast-container`.
 
-```html example code height="260px"
+```html example height="260px"
 <div class="toast-container">
   <div class="toast show" role="alert" aria-live="assertive" aria-atomic="true" data-bs-autohide="false" data-bs-toggle="toast">
     <div class="toast-header">

+ 2 - 2
docs/ui/components/tooltips.mdx

@@ -8,7 +8,7 @@ bootstrapLink: components/tooltips/
 
 Use the default markup to create tooltips that will help users understand particular elements of your interface. You can decide where the text label is to be displayed - at the top, bottom or on either side of the element.
 
-```html code example centered separated
+```html example centered separated
 <button type="button" class="btn" data-bs-toggle="tooltip" data-bs-placement="top" title="Tooltip on top">
   Tooltip on top
 </button>
@@ -27,7 +27,7 @@ Use the default markup to create tooltips that will help users understand partic
 
 If the default tooltip is not enough, you can add the option to use HTML code in the text to highlight particular bits of information and make the content more attractive.
 
-```html code example height="7rem"
+```html example height="7rem"
 <button type="button" class="btn" data-bs-toggle="tooltip" data-bs-html="true" title="<em>Tooltip</em> <u>with</u> <b>HTML</b>">
   Tooltip with HTML
 </button>

+ 1 - 1
docs/ui/forms/form-color-check.mdx

@@ -170,7 +170,7 @@ Your input controls can come in a variety of colors, depending on your preferenc
 
 Add an color picker to your form to let users customise it according to their preferences.
 
-```html example code centered
+```html example centered
 <div class="mb-3">
   <label class="form-label">Color picker</label>
   <input type="color" class="form-control form-control-color" value="#066fd1" title="Choose your color">

+ 12 - 12
docs/ui/forms/form-elements.mdx

@@ -9,7 +9,7 @@ libs: nouislider
 
 Use classic, user-friendly inputs, label them appropriately and include input placeholders that will help users avoid confusion when completing a form.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Text</label>
   <input type="text" class="form-control" name="example-text-input" placeholder="Input placeholder" />
@@ -59,7 +59,7 @@ Use the `form-control-rounded` class if you prefer form controls with rounded co
 
 You can remove borders from your form control by adding the `form-control-flush` class.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Form control flush</label>
   <input type="text" class="form-control form-control-flush" name="Form control flush" placeholder="Text.." />
@@ -70,7 +70,7 @@ You can remove borders from your form control by adding the `form-control-flush`
 
 Add icons to your input controls to suggest users what they should enter or inform them of the current state of a form element.
 
-```html example code centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Icon input</label>
   <div class="input-icon mb-3">
@@ -115,7 +115,7 @@ Add icons to your input controls to suggest users what they should enter or info
 
 Include an additional element in your input section, such as a button which can be used to submit the information enetered in the input control.
 
-```html example code centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Separated inputs</label>
   <div class="row g-2">
@@ -142,7 +142,7 @@ Use a multi-line text input control to enable users to enter longer pieces of te
 
 Add one of the available selects - either a dropdown or a multiple choice select - to let users choose from a predefined set of options.
 
-```html code example centered columns={1} height="30rem"
+```html example centered columns={1} height="30rem"
 <div class="mb-3">
   <label class="form-label">Textarea</label>
   <textarea class="form-control" name="example-textarea" placeholder="Textarea placeholder"></textarea>
@@ -169,7 +169,7 @@ Add one of the available selects - either a dropdown or a multiple choice select
 
 Choose the size of an input control that will go well with your form design. Apart from the default size, you can also use small and large input controls.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input sizing</label>
   <input class="form-control form-control-lg mb-2" type="text" placeholder=".form-control-lg" />
@@ -350,7 +350,7 @@ Add a range slider to make it possible for users to set a value or range, such a
 
 Create a group of input controls and place add-ons on either side of an input.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input group</label>
   <div class="input-group mb-2">
@@ -381,7 +381,7 @@ Create a group of input controls and place add-ons on either side of an input.
 
 Add checkboxes or radio buttons on either side of your input control.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input with checkbox or radios</label>
   <div class="input-group mb-2">
@@ -403,7 +403,7 @@ Add checkboxes or radio buttons on either side of your input control.
 
 Add text to your input control, either before or after the text which is to be entered by a user.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input with prepended text</label>
   <div class="input-group input-group-flat mb-2">
@@ -425,7 +425,7 @@ Add text to your input control, either before or after the text which is to be e
 
 Include a link in your input control to add a clickable element within the control.
 
-```html code example centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input with appended link</label>
   <div class="input-group input-group-flat">
@@ -441,7 +441,7 @@ Include a link in your input control to add a clickable element within the contr
 
 Include a `<kbd>` in your input control to add shortcut to the control.
 
-```html code example centered columns={1}
+```html example centered columns={1}
 <div class="mb-3">
   <label class="form-label">Input with appended link</label>
   <div class="input-group input-group-flat">
@@ -457,7 +457,7 @@ Include a `<kbd>` in your input control to add shortcut to the control.
 
 Add an icon link which you want to display at the end of your input control to visually represent actions which a user can take.
 
-```html example code centered columns={1} height="20rem"
+```html example centered columns={1} height="20rem"
 <div class="mb-3">
   <label class="form-label">Input with appended icon links</label>
   <div class="input-group input-group-flat">

+ 1 - 1
docs/ui/forms/form-helpers.mdx

@@ -7,6 +7,6 @@ description: A form helper can be used to provide users with additional informat
 
 Use an input helper to display additional information about a form element. The text label will appear once a user hovers over the helper.
 
-```html example code centered
+```html example centered
 <span class="form-help" data-bs-toggle="popover" data-bs-placement="top" data-bs-html="true" data-bs-content="<p>ZIP Code must be US or CDN format. You can use an extended ZIP+4 code to determine address more accurately.</p><p class='mb-0'><a href=''>USP ZIP codes lookup tools</a></p>">?</span>
 ```

+ 1 - 1
docs/ui/forms/form-input-mask.mdx

@@ -11,7 +11,7 @@ description: An input mask is a used to clarify the input format required in a g
 
 Use an input mask in the fields where users have to enter their phone number, to make the formatting rules clear and help them avoid confusion.
 
-```html example code centered columns={1}
+```html example centered columns={1}
 <label class="form-label">Telephone mask</label>
 <input type="text" name="input-mask" class="form-control" data-mask="(00) 0000-0000" data-mask-visible="true" placeholder="(00) 0000-0000" autocomplete="off" />
 ```

+ 4 - 4
docs/ui/forms/form-selectboxes.mdx

@@ -4,7 +4,7 @@ title: Form selectboxes
 
 Add selectboxes to make your form more intuitive by providing users with a set of options to choose from. You can add simple selectboxes with a label, use icons only or icons with labels. Alternatively, you can use pill selectboxes if they go well with your design.
 
-```html example code columns={1} centered
+```html example columns={1} centered
 <div class="mb-3">
   <label class="form-label">Simple selectgroup</label>
   <div class="form-selectgroup">
@@ -28,7 +28,7 @@ Add selectboxes to make your form more intuitive by providing users with a set o
 </div>
 ```
 
-```html example code columns={1} centered
+```html example columns={1} centered
 <div class="mb-3">
   <label class="form-label">Icon input</label>
   <div class="form-selectgroup">
@@ -78,7 +78,7 @@ Add selectboxes to make your form more intuitive by providing users with a set o
 </div>
 ```
 
-```html example code columns={1} centered
+```html example columns={1} centered
 <div class="mb-3">
   <label class="form-label">Selectgroup with icons and text</label>
   <div class="form-selectgroup">
@@ -117,7 +117,7 @@ Add selectboxes to make your form more intuitive by providing users with a set o
 </div>
 ```
 
-```html example code columns={1} centered
+```html example columns={1} centered
 <div class="mb-3">
   <label class="form-label">Different style</label>
   <div class="form-selectgroup form-selectgroup-pills">

+ 2 - 2
docs/ui/forms/form-validation.mdx

@@ -3,7 +3,7 @@ title: Validation states
 description: To inform users whether the entered value is correct or not, use either of the validation states. Thanks to that, users will immediately know which form elements they need to correct and, if the state displays as invalid, why the value is incorrect.
 ---
 
-```html example code centered columns="1" height="20rem"
+```html example centered columns="1" height="20rem"
 <div class="mb-3">
   <label class="form-label">Validation States </label>
   <input type="text" class="form-control is-valid mb-2" placeholder="Valid State..." />
@@ -16,7 +16,7 @@ description: To inform users whether the entered value is correct or not, use ei
 
 If you prefer a more subtle manner of informing users of the input control validation state, you can use tick and cross symbols and resign from colored control frames and the validation feedback.
 
-```html example code centered columns="1" height="20rem"
+```html example centered columns="1" height="20rem"
 <div class="mb-3">
   <label class="form-label">Validation States (lite)</label>
   <input type="text" class="form-control is-valid is-valid-lite mb-2" placeholder="Valid State..." />

+ 5 - 5
docs/ui/layout/page-headers.mdx

@@ -5,7 +5,7 @@ description: Page heading examples for Tabler
 
 ## Simple header
 
-```html example code vcentered
+```html example vcentered
 <div class="page-header">
   <div class="row align-items-center">
     <div class="col">
@@ -46,7 +46,7 @@ description: Page heading examples for Tabler
 
 ## With meta, avatar and actions
 
-```html example code vcentered
+```html example vcentered
 <div class="page-header">
   <div class="row align-items-center">
     <div class="col-auto">
@@ -106,7 +106,7 @@ description: Page heading examples for Tabler
 
 ## With meta, search and actions
 
-```html example code vcentered
+```html example vcentered
 <div class="page-header">
   <div class="row align-items-center">
     <div class="col">
@@ -145,7 +145,7 @@ description: Page heading examples for Tabler
 
 Page header with a border to separate content is an effective way to organize and present information in a clear and visually appealing way.
 
-```html example code fullpage
+```html example fullpage
 <div class="page-header page-header-border">
   <div class="container-fluid">
     <div class="row align-items-center">
@@ -189,7 +189,7 @@ A page header with breadcrumb and actions is a common design element found in ma
 
 In addition to the breadcrumb, the header often includes actions or buttons that allow the user to perform common tasks related to the current page. These actions may include things like adding a new item, editing existing content, or deleting items.
 
-```html example code vcentered
+```html example vcentered
 <div class="page-header">
   <div class="row align-items-center mw-100">
     <div class="col">

+ 2 - 2
docs/ui/layout/page-layouts.mdx

@@ -9,7 +9,7 @@ description: Learn how to build a sample version of the dashboard
 
 ## Sample layout
 
-```html example code fullpage resizable height="30rem"
+```html example fullpage resizable height="30rem"
 <div class="page">
   <header class="navbar navbar-expand-sm navbar-light d-print-none">
     <div class="container-xl">
@@ -65,7 +65,7 @@ description: Learn how to build a sample version of the dashboard
 
 ## Sidebar layout
 
-```html example code fullpage resizable height="30rem"
+```html example fullpage resizable height="30rem"
 <div class="page">
   <!-- Sidebar -->
   <aside class="navbar navbar-vertical navbar-expand-sm navbar-dark">

+ 1 - 1
docs/ui/plugins/flags.mdx

@@ -19,7 +19,7 @@ You can also include plugin via CDN:
 
 To create a flag, add the `flag` class to a component and choose the country whose flag you want to use. The full list of countries can be found below.
 
-```html code example centered separated plugins="flags"
+```html example centered separated plugins="flags"
 <span class="flag flag-country-tg"></span>
 <span class="flag flag-country-br"></span>
 <span class="flag flag-country-pt"></span>

+ 2 - 2
docs/ui/plugins/payments.mdx

@@ -18,7 +18,7 @@ You can also include plugin via CDN:
 
 To create a payment provider icon, add the `payment` class to a component and specify the payment provider. The full list of payment providers can be found below.
 
-```html example code plugins="payments" separated centered
+```html example plugins="payments" separated centered
 <span class="payment payment-provider-shopify"></span>
 <span class="payment payment-provider-visa"></span>
 <span class="payment payment-provider-paypal"></span>
@@ -28,7 +28,7 @@ To create a payment provider icon, add the `payment` class to a component and sp
 
 Using Bootstrap’s typical naming structure, you can create a standard payment, or scale it up or down to different sizes based on what’s needed.
 
-```html example code plugins="payments" separated centered
+```html example plugins="payments" separated centered
 <span class="payment payment-xl payment-provider-shopify"></span>
 <span class="payment payment-lg payment-provider-visa"></span>
 <span class="payment payment-md payment-provider-paypal"></span>

+ 2 - 2
docs/ui/utilities/interactions.mdx

@@ -7,7 +7,7 @@ description: Utility classes that change how users interact with contents of a w
 
 Change the way in which the content is selected when the user interacts with it.
 
-```html code example
+```html example
 <p class="user-select-all">This paragraph will be entirely selected when clicked by the user.</p>
 <p class="user-select-auto">This paragraph has default select behavior.</p>
 <p class="user-select-none">This paragraph will not be selectable when clicked by the user.</p>
@@ -17,7 +17,7 @@ Change the way in which the content is selected when the user interacts with it.
 
 Tabler provides `.pe-none` and `.pe-auto` classes to prevent or add element interactions.
 
-```html code example
+```html example
 <p><a href="#" class="pe-none" tabindex="-1" aria-disabled="true">This link</a> can not be clicked.</p>
 <p><a href="#" class="pe-auto">This link</a> can be clicked (this is default behavior).</p>
 ```