I want to use Redoc for my API documentation. I also have swagger.
I found here : https://github.com/Redocly/redoc this line - Integrate API Introduction into side menu - ReDoc takes advantage of markdown headings from OpenAPI description field. It pulls them into side menu and also supports deep linking.
I want to add my readme file to left side bar in Redoc. But I didn`t find any good example for it. What should I change, where readme should be added?
My redoc setup :
app.UseReDoc(c =>
{
c.DocumentTitle = $"Documentation";
c.SpecUrl = /api/docs/swagger.json";
c.RoutePrefix = "docs";
});