Controllers
DocsController
Controller for serving documentation pages.
Index
Task<IActionResult> Index()
Displays the documentation index view containing available documentation items.
Returns
A view result whose model is the collection of documentation items extracted from the repository.
Details
Task<IActionResult> Details(string path)
Displays the details view for a documentation item identified by the given path.
Parameters
pathThe unique path or identifier of the documentation item to retrieve.
Returns
An IActionResult rendering the details view with the document; returns NotFoundResult if the path is invalid or the document is missing.
Search
IActionResult Search()
Displays the dedicated docs search page.
Returns
A view result displaying the search page interface.
SearchIndex
Task<IActionResult> SearchIndex()
Returns docs search index data for live-hosted docs.
Returns
A JSON result containing searchable document metadata and content fields.