fbuchinger
fbuchinger

Reputation: 4514

How to generate an API index?

We are using MediaWiki for the prose documentation of our C#/Java/Javascript programming API. The API methods and properties are listed on about 20 wiki pages grouped by topic (e.g. frontend/client-server-interaction/backend).

What I need is an alphabetic index of all API methods similar to Sphinx API Index. How to achieve this?

Upvotes: 1

Views: 59

Answers (1)

Mark A. Hershberger
Mark A. Hershberger

Reputation: 676

Put your 20 wiki pages in the "API" category by adding [[Category:API]] to the page's wikitext. Then, when you visit the Category:API page (http://your-wiki-url/Category:API), you'll see all those API pages listed.

Upvotes: 1

Related Questions