I tested generating documentation using const keyword of JSON Schema Draft-06, but it doesn't reflect to docs. (prmd verify schema.json was passed)
For instance, Description and Example are auto generated if using enum keyword like this.
[schema.json]
...
""
"enum": ["THIS-IS-A-CONSTANT"]
...
and $ prmd doc schema.json > schema.md
↓
| Description |
Example |
| one of:"THIS-IS-A-CONSTANT" |
"THIS-IS-A-CONSTANT" |
In case of const keyword:
It'd be nice if it support by default.
Thank you.