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
Description
Wrong escaping when using merge:
x-error-response: &x-error-response 4XX: description: Error response content: application/json: schema: $ref: '#/components/schemas/HTTPError' paths: /admin/ping: get: summary: Ping pongs operationId: AdminPing responses: "200": description: OK content: text/plain: schema: type: string example: pong !!merge <<: *x-error-response tags: - admin components: schemas: HTTPError: description: represents an error message response. type: object properties: title: type: string detail: type: string status: type: integer error: type: string
results in:
Ping: { responses: { /** @description OK */ 200: { content: { "text/plain": string; }; }; /** @description Error response */ "4XX": { content: { "application/json": external["external[%22components[%22schemas%22][%22HTTPError%22]%22]"]; }; }; }; };
Environment:
The text was updated successfully, but these errors were encountered:
This was fixed in a recent release. I’ve added a test (#1285) to ensure no regressions happen in the future :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
Wrong escaping when using merge:
results in:
Environment:
The text was updated successfully, but these errors were encountered: