Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python Wiki Style Doc Generator [closed]

Looking for something like PyDoc that can generate a set of Wiki style pages vs the current HTML ones that export out of PyDoc. I would like to be able to export these in Google Code's Wiki as an extension to the current docs up there now.

like image 442
NerdyNick Avatar asked Jul 05 '26 07:07

NerdyNick


1 Answers

Take a look at pydoc.TextDoc. If this contains too little markup, you can inherit from it and make it generate markup according to your wiki's syntax.

like image 134
Martin v. Löwis Avatar answered Jul 06 '26 21:07

Martin v. Löwis