Skip to content

Commit

Permalink
Fix commonmark syntax (#30276)
Browse files Browse the repository at this point in the history
* Fix commonmark syntax

related gohugoio/hugo#6553

* Fix indentation

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
  • Loading branch information
satotake and XhmikosR authored Mar 19, 2020
1 parent 27ec3e8 commit a523caa
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions site/content/docs/4.3/content/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit a523caa

Please sign in to comment.