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
I am facing issue while rendering examples for response code:
Here is my code in yaml file:
examples: Invalid_Auth_Token: success: false errors: - code: CS000 message: Invalid authorization token warnings: null
It is rendering like in html:
{ "Invalid_Auth_Token" : { "success" : false, "errors" : [ { "code" : "CS000", "message" : "Invalid authorization token" } ], "warnings" : null } }
I want the response like :
Invalid_Auth_Token { "success" : false, "errors" : [ { "code" : "CS000", "message" : "Invalid authorization token" } ], "warnings" : null }
How can I get this.
I am using swagger2markup-maven-plugin-1.3.4 to generate asciidocs
asciidoctor-maven-plugin to generate html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am facing issue while rendering examples for response code:
Here is my code in yaml file:
It is rendering like in html:
I want the response like :
How can I get this.
I am using
swagger2markup-maven-plugin-1.3.4 to generate asciidocs
asciidoctor-maven-plugin to generate html
The text was updated successfully, but these errors were encountered: