it\'s any way to remove the package and or module name from sphinx doc?
Example: if exist a function called waa inside the module foo.bar, the rst code
You can change add_module_names to False in the file conf.py:
add_module_names
False
conf.py
# If true, the current module name will be prepended to all description # unit titles (such as .. function::). add_module_names = False
Then foo.bar.my_function() will display as my_function().
foo.bar.my_function()
my_function()