diff options
| author | satotake <[email protected]> | 2020-03-20 04:11:29 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-19 21:11:29 +0200 |
| commit | a523caab8711ce7438b29f30070c215344adb2ab (patch) | |
| tree | a175844564688657526aed4b383ef4b4627cd3c5 | |
| parent | 27ec3e86906bb85b5a35ff163f0ab6be2ea3867c (diff) | |
| download | bootstrap-a523caab8711ce7438b29f30070c215344adb2ab.tar.xz bootstrap-a523caab8711ce7438b29f30070c215344adb2ab.zip | |
Fix commonmark syntax (#30276)
* Fix commonmark syntax
related https://github.com/gohugoio/hugo/issues/6553
* Fix indentation
Co-authored-by: XhmikosR <[email protected]>
| -rw-r--r-- | site/content/docs/4.3/content/tables.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/site/content/docs/4.3/content/tables.md b/site/content/docs/4.3/content/tables.md index 12aac11c9..d5dc98347 100644 --- a/site/content/docs/4.3/content/tables.md +++ b/site/content/docs/4.3/content/tables.md @@ -459,15 +459,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") }} - <tr class="table-{{ .name }}"> - <th scope="row">{{ .name | title }}</th> - <td>Cell</td> - <td>Cell</td> - </tr> - {{- end -}} -{{< /table.inline >}} + {{< 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 >}} </tbody> </table> </div> |
