We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example RAML file:
# <-- snip --> /foo: get: description: get foo post: description: post foo put: description: put foo
When running tree on the RAML file, it would print out like so:
tree
$ ramlfications tree api.raml # <--snip--> |- /foo |- /foo |- /foo
I it to just be condensed to just one /foo.
/foo
With increased verbosity, it's a bit more understandable:
$ ramlfications tree api.raml # <--snip--> |- /foo ⌙ GET |- /foo ⌙ POST |- /foo ⌙ PUT
Still isn't too pretty; maybe it should be more like:
$ ramlfications tree api.raml # <--snip--> |- /foo ⌙ GET ⌙ POST ⌙ PUT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An example RAML file:
When running
tree
on the RAML file, it would print out like so:I it to just be condensed to just one
/foo
.With increased verbosity, it's a bit more understandable:
Still isn't too pretty; maybe it should be more like:
The text was updated successfully, but these errors were encountered: