diff options
| author | XhmikosR <[email protected]> | 2019-12-02 12:40:48 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-12-16 01:54:47 +0200 |
| commit | 44ca196534440f07209624af2e35eb983e40eb2a (patch) | |
| tree | 30c47b4fdaa83907f8402a3b2cae700a8599740c | |
| parent | ef03833b69b72a8cfbf2af653e75a8de7dcc73ff (diff) | |
| download | bootstrap-44ca196534440f07209624af2e35eb983e40eb2a.tar.xz bootstrap-44ca196534440f07209624af2e35eb983e40eb2a.zip | |
Work around invalid generated HTML
| -rw-r--r-- | site/content/docs/4.3/components/modal.md | 2 | ||||
| -rw-r--r-- | site/content/docs/4.3/components/navbar.md | 3 | ||||
| -rw-r--r-- | site/content/docs/4.3/content/tables.md | 9 |
3 files changed, 4 insertions, 10 deletions
diff --git a/site/content/docs/4.3/components/modal.md b/site/content/docs/4.3/components/modal.md index 06dda8d11..15a3eeabf 100644 --- a/site/content/docs/4.3/components/modal.md +++ b/site/content/docs/4.3/components/modal.md @@ -727,7 +727,6 @@ Our default modal without modifier class constitutes the "medium" size modal. <div class="modal fade bd-example-modal-xl" tabindex="-1" role="dialog" aria-labelledby="myExtraLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-xl" role="document"> <div class="modal-content"> - <div class="modal-header"> <h5 class="modal-title h4" id="myExtraLargeModalLabel">Extra large modal</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> @@ -744,7 +743,6 @@ Our default modal without modifier class constitutes the "medium" size modal. <div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content"> - <div class="modal-header"> <h5 class="modal-title h4" id="myLargeModalLabel">Large modal</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> diff --git a/site/content/docs/4.3/components/navbar.md b/site/content/docs/4.3/components/navbar.md index 00c37c594..5b6e9b93a 100644 --- a/site/content/docs/4.3/components/navbar.md +++ b/site/content/docs/4.3/components/navbar.md @@ -325,7 +325,6 @@ Theming the navbar has never been easier thanks to the combination of theming cl <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> - <div class="collapse navbar-collapse" id="navbarColor01"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> @@ -355,7 +354,6 @@ Theming the navbar has never been easier thanks to the combination of theming cl <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> - <div class="collapse navbar-collapse" id="navbarColor02"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> @@ -385,7 +383,6 @@ Theming the navbar has never been easier thanks to the combination of theming cl <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> - <div class="collapse navbar-collapse" id="navbarColor03"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> diff --git a/site/content/docs/4.3/content/tables.md b/site/content/docs/4.3/content/tables.md index e508d517d..cbbe8d690 100644 --- a/site/content/docs/4.3/content/tables.md +++ b/site/content/docs/4.3/content/tables.md @@ -457,16 +457,15 @@ Use contextual classes to color table rows or individual cells. <td>Cell</td> <td>Cell</td> </tr> - - {{< table.inline >}} - {{- range (index $.Site.Data "theme-colors") }} +{{< table.inline >}} + {{- range (index $.Site.Data "theme-colors") }} <tr class="table-{{ .name }}"> <th scope="row">{{ .name | title }}</th> <td>Cell</td> <td>Cell</td> </tr> - {{- end -}} - {{< /table.inline >}} + {{- end -}} +{{< /table.inline >}} </tbody> </table> </div> |
