Skip to content

Commit

Permalink
Merge pull request #13 from cert-manager/fix/vertical-template
Browse files Browse the repository at this point in the history
fix: vertical template template uses wrong var name
  • Loading branch information
jetstack-bot authored Jan 15, 2024
2 parents 4834ae2 + 5e3c744 commit a50e491
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions render/markdown-table-vertical
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,27 @@
{{- /* Iterate over properties within the section */}}
{{- range .Properties }}

### {{ .Name }}
### {{ .Path }}

<table>
<tr>
<th>Property</th>
<td>{{ .Name }}</td>
</tr>
<tr>
<th>Type</th>
<td>{{.Type}}</td>
</tr>
<tr>
<th>Default</th>
<td>
<tr>
<th>Property</th>
<td>{{ .Name }}</td>
</tr>
<tr>
<th>Type</th>
<td>{{.Type}}</td>
</tr>
<tr>
<th>Default</th>
<td>

```yaml
{{.Default}}
```

</td>
</tr>
</td>
</tr>
</table>

{{- range .Description.Segments }}
Expand Down

0 comments on commit a50e491

Please sign in to comment.