Discussions

Ask a Question
ANSWERED

Does it support LaTex or any other math visualisation?

I was trying to figure out how to embed/type Latex. Most markdown readers/editors allow for Latex. However, this does not seem to be the case. Any idea if this is possible yet?
ANSWERED

AsyncAPI support

does readme support AsyncAPI specification ?
ANSWERED

Rendered code is not working well for a nullable object

Hello I'm using OpenAPI 3.0 I have a **nullable **object `reminder_settings` wich is composed of 2 fields that are required **if **reminder_setting is set So you can call the endpoint without having to set reminder_settings. But if you do so, you have to fill the 2 fields (`interval_in_days` and `max_occurrences`) - `interval_in_days` is an enum - `max_occurrences`is integer ![](https://files.readme.io/46933af-image.png) When i load my documentation page, generated code is not working well since it already fills `interval_in_days` whereas it shouldn't because the `reminder_settings` is nullable. And since both fields must be filled when `reminder_settings`is created it throws an error ![](https://files.readme.io/517e45b-image.png) ![](https://files.readme.io/0643fda-image.png) Expected behavior: the `reminder_settings`json should not be present by default on generated code since it's nullable How can i fix my problem ? Thank you

Rendered code is not working well when using multipart/form-data

Hello I face an issue when using multipart/form-data and object in body. Here is snapshot of current openapi 3.0 ![](https://files.readme.io/f430275-image.png) The problem is with `initials` and its content: `alignment` and` y` In documentation generated code looks like this: ![](https://files.readme.io/9957dc7-image.png) In shell generated, we can see `--form alignment=hello --form y=10` Whereas i would expect `--form initials[alignment]=hello --form initials[y]=10` When using `application/json` instead of `multipart/form-data `is works very well, so i'm assuming this is a generation code problem related to `multipart/form-data`. Within the same endpoint i'm also upload a file so i need to keep `multipart/form-data` You can see our public doc here: <https://developers.yousign.com/reference/post-signature_requests-signaturerequestid-documents> Could you help me one this one, or tell me when this will be fixed ? Thanks
ANSWERED

Changelogs via Slack?

The doc says there is slack integration for Suggested Edits and Discussions. Is there any support for changelogs? <https://docs.readme.com/main/docs/slack>
ANSWERED

Embed Youtube link in privacy mode

The youtube embed doesn't accept the share/embed privacy mode which domain is: ``` www.youtube-nocookie.com ``` Would be helpful for those who care about privacy.
ANSWERED

Is an in house server version of readme available?

It seems readme is only available in a cloud-based server model. Or do you also provide an in-house server model?
ANSWERED

redirects to third-party website

Can I provide redirects to third-party websites in ReadMe pages?
ANSWERED

Hide TOC not working

I'm trying to hide the TOC in my ReadMe project, but the TOC remains visible despite making changes. Any suggestions on how to successfully hide the TOC?
ANSWERED

In our api we have a requirement like if there is no object set than need to pass empty array in payload.

Like i need to pass payload like this way for questions and nestedquestions need to pass empty array. { "attri": [ { "key": "First Name", "value": "Kk" }, { "key": "Last Name", "value": "Ppp" }, { "key": "Email", "value": "[email protected]" } ], "questions": \[], "nestedQuestions": \[], "seatNumber": null, "eventTicketingId": null, "eventKey": null }