]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix commonmark syntax (#30276)
authorsatotake <doublequotation@gmail.com>
Thu, 19 Mar 2020 19:11:29 +0000 (04:11 +0900)
committerGitHub <noreply@github.com>
Thu, 19 Mar 2020 19:11:29 +0000 (21:11 +0200)
* Fix commonmark syntax

related https://github.com/gohugoio/hugo/issues/6553

* Fix indentation

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
site/content/docs/4.3/content/tables.md

index 12aac11c9360f3bb211de5bb82ecc3f5ebba1e83..d5dc983470f501f50f7303a33a78efb92fbdacb0 100644 (file)
@@ -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>