0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-21 18:54:30 +01:00

Fix commonmark syntax (#30276)

* Fix commonmark syntax

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

* Fix indentation

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
satotake 2020-03-20 04:11:29 +09:00 committed by GitHub
parent 27ec3e8690
commit a523caab87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -459,7 +459,7 @@ Use contextual classes to color table rows or individual cells.
<td>Cell</td> <td>Cell</td>
<td>Cell</td> <td>Cell</td>
</tr> </tr>
{{< table.inline >}} {{< table.inline >}}
{{- range (index $.Site.Data "theme-colors") }} {{- range (index $.Site.Data "theme-colors") }}
<tr class="table-{{ .name }}"> <tr class="table-{{ .name }}">
<th scope="row">{{ .name | title }}</th> <th scope="row">{{ .name | title }}</th>
@ -467,7 +467,7 @@ Use contextual classes to color table rows or individual cells.
<td>Cell</td> <td>Cell</td>
</tr> </tr>
{{- end -}} {{- end -}}
{{< /table.inline >}} {{< /table.inline >}}
</tbody> </tbody>
</table> </table>
</div> </div>