Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton committed Jul 24, 2023
1 parent eb3c4ba commit 9278923
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion site/assets/js/code-examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
if (!element.closest('.bd-example-snippet')) {
element.insertAdjacentHTML('beforebegin', btnHtml)
element.previousElementSibling.append(element)
element.previousElementSibling.querySelector('small').innerHTML = element.querySelector('pre > code').getAttribute('data-lang')
element.previousElementSibling.querySelector('small').textContent = element.querySelector('pre > code').getAttribute('data-lang')
}
})

Expand Down
1 change: 1 addition & 0 deletions site/content/docs/5.3/content/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ Add a thicker border, darker between table groups—`<thead>`, `<tbody>`, and `<
## Vertical alignment

Table cells of `<thead>` are always vertical aligned to the bottom. Table cells in `<tbody>` inherit their alignment from `<table>` and are aligned to the top by default. Use the [vertical align]({{< docsref "/utilities/vertical-align" >}}) classes to re-align where needed.

{{< example skip=tr >}}
<div class="table-responsive">
<table class="table align-middle">
Expand Down

0 comments on commit 9278923

Please sign in to comment.