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
If there is HTML code in a string in a parameter example of a request it is not escaped properly in the curl query. For example
{ "description": "<b>Test</b>" }
is rendered as { \"decription\": \"Test\" }
{
\"decription\": \"
Test
\"
}
The text was updated successfully, but these errors were encountered:
I'm having a similar issue, with XML.
I've tried with double backslash () before the special symbols, unsuccessfully.
{ "param1": 234, "param2": "string", "xml": "\\<element name\\=\\"Simple\\" color\\=\\"blue\\" \\/>" }
Sorry, something went wrong.
tested in swagger-api/swagger-js@c8c1cfc
fixed in efb7765
No branches or pull requests
If there is HTML code in a string in a parameter example of a request it is not escaped properly in the curl query. For example
is rendered as
{
\"decription\": \"
Test
\"
}
The text was updated successfully, but these errors were encountered: