We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457cb46 commit b598142Copy full SHA for b598142
README.md
@@ -9,25 +9,25 @@ This generator doesn't attempt to support the full JSON Schema specification. In
9
10
## Install
11
12
-```
13
-go get -u github.com/grafana/json-schema-docs
+```bash
+go install github.com/grafana/json-schema-docs
14
```
15
16
## Run
17
18
19
json-schema-docs -schema ./user.schema.json > user.md
20
21
22
To use a template when generating the Markdown:
23
24
25
json-schema-docs -schema ./user.schema.json -template user.md.tpl > user.md
26
27
28
`template` is the path to a file containing a Go template, such as this one:
29
30
31
+++
32
title = "{{ .Title }}"
33
description = "{{ .Description }}"
0 commit comments