Skip to content

Commit

Permalink
Merge pull request #2 from RemingtonReackhof/fix-nil-values
Browse files Browse the repository at this point in the history
fix: change rendering of <nil> in markdown to render correctly
  • Loading branch information
norwoodj authored Jun 14, 2019
2 parents 2140a87 + 58d915d commit e0a8390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/helm-docs/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func parseNilValueType(prefix string, description string) ValueRow {
return ValueRow{
Key: prefix,
Type: t,
Default: "<nil>",
Default: "\\<nil\\>",
Description: description,
}
}
Expand Down
2 changes: 1 addition & 1 deletion example-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ This chart's source code can be found [here](https://github.com/norwoodj/helm-do
| controller.persistentVolumeClaims | list | [] | List of persistent volume claims to create |
| controller.podLabels | object | {} | The labels to be applied to instances of the controller pod |
| controller.publishService.enabled | bool | false | Whether to expose the ingress controller to the public world |
| controller.replicas | int | nil | Number of nginx-ingress pods to load balance between |
| controller.replicas | int | \<nil\> | Number of nginx-ingress pods to load balance between |

0 comments on commit e0a8390

Please sign in to comment.