diff --git a/site/assets/js/code-examples.js b/site/assets/js/code-examples.js index 9a45427e21c2..0805aee9e839 100644 --- a/site/assets/js/code-examples.js +++ b/site/assets/js/code-examples.js @@ -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') } }) diff --git a/site/content/docs/5.3/content/tables.md b/site/content/docs/5.3/content/tables.md index 5e7d589deb06..10caa92400e0 100644 --- a/site/content/docs/5.3/content/tables.md +++ b/site/content/docs/5.3/content/tables.md @@ -261,6 +261,7 @@ Add a thicker border, darker between table groups—``, ``, and `< ## Vertical alignment Table cells of `` are always vertical aligned to the bottom. Table cells in `` inherit their alignment from `` 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 >}}