amsfonts
xr
useful for xcode, currently off GENERATE_DOCSET = NO
Look at search engine integration, xml output, etc EXTERNAL_SEARCH = YES
To achieve better output in the Python docs: http://stackoverflow.com/questions/7690220/how-to-document-python-function-parameter-types
Swap this kind of formatting into py files:
def my_method(x, y):"""! my_method description @type x: int @param x: An integer @type y: int|string @param y: An integer or string @rtype: string @return: Returns a sentence with your variables in it """return "Hello World! %s, %s" % (x,y)
Note that the bang (!) is added after the opening comment """! - this seems to do the trick and the remaining comments will be nicely parsed by Doxygen.