Daniel G. Taylor
Daniel G. Taylor
There is a plugin for this now, which ads IDs and can add anchors (links) to either side of the heading text: https://github.com/valeriangalliat/markdown-it-anchor
It looks like the `google.protobuf.Emtpy` type is not currently supported. Someone will need to implement it in python-betterproto. As a workaround you can define your own empty message until this...
@rene-xompass @hagemt it is production-ready in the sense that it is already being used in production for multiple services at a large media company, but the development is ongoing and...
For non structured (not JSON/CBOR) input you can use an input byte stream, see https://github.com/danielgtaylor/huma#input-streaming. Example: ```go app.Resource("/stream").Post("stream-example", "docs...", responses.Created(), responses.InternalServerError(), ).Run(func(ctx huma.Context, input struct { ContentType string `header:"Content-Type"` Body...
Interesting, this isn't something I've had to handle before from the generated docs UI. It looks like it is possible to convince Swagger UI to show the button, e.g. see...
@carlmontanari it's not something I generally want to encourage in my own APIs because it makes things kind of complicated on the consuming client, but I'm totally open to supporting...
@honzajavorek switch to the `Monokai Extended` color scheme or another one that has similar styles defined.
@foxx I'm assuming that this example exhibits the issue you are reporting: ``` apib # Resource [/resource] ## Action [GET] + Response 200 (application/json) + Body { "I am some...
The bug here is that it is looking for either just `+ Request (application/json)` or a number like `+ Request 123 (application/json)`. It's [not taking into account](https://github.com/apiaryio/api-blueprint-sublime-plugin/blob/master/APIBlueprint.tmLanguage#L51) that there may...
This seems like a reasonable change to me. Can you add unit tests to ensure the value is passed through as expected to the underlying base classes?