Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upLink to class not created without the --external-links option #27
Comments
This comment has been minimized.
This comment has been minimized.
|
Unfortunately, links don't work that well in statically generated docs. I think they should work just fine for linking within the same module, but linking to things in other modules or sub-modules just doesn't work right now. The "external" links stuff only applies when documentation is served over HTTP. In that case, it employs a hack where links to items in other modules are specially written. When you follow them, the HTTP server tries to resolve them dynamically by search all modules in In essence, the current (automatic) linking is very simplistic. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mikecharles commentedFeb 13, 2015
I'm generating documentation for my
data_utilspackage. Underdata_utils.gridded.gridI have a class defined:But when I generate documentation with this command:
Any references in modules' docstrings (ex.
data_utils.gridded.plotting) todata_utils.gridded.grid.Griddo not become links. However, when I include the--external-linksarg:data_utils.gridded.grid.Griddoes become a link. So why is this considered "external"?