aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsatotake <[email protected]>2020-03-20 04:11:29 +0900
committerGitHub <[email protected]>2020-03-19 21:11:29 +0200
commita523caab8711ce7438b29f30070c215344adb2ab (patch)
treea175844564688657526aed4b383ef4b4627cd3c5
parent27ec3e86906bb85b5a35ff163f0ab6be2ea3867c (diff)
downloadbootstrap-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.md18
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>