Currently docc supports absolute references with the form [link text](ref:ethereum.frontier.blocks.Header.difficulty). It's a pain to have to write out the full path to types when they could be resolved relatively, like for example:
class Foo:
"""
This a some cool class documentation.
"""
def some_function(self):
"""
See [`Foo`](ref:Foo) for more details.
"""
I'm not exactly sure what the final form of this would look like. You might want to use a different prefix (py:Foo) or something else entirely.
Currently
doccsupports absolute references with the form[link text](ref:ethereum.frontier.blocks.Header.difficulty). It's a pain to have to write out the full path to types when they could be resolved relatively, like for example:I'm not exactly sure what the final form of this would look like. You might want to use a different prefix (
py:Foo) or something else entirely.