I am using Emacs 23 with Org 7.8.04. My code structure is as follows:
<<go_function>>
if __name__ == "__main__":
go()
Define =go_function= as follows.
def go:
print "hello, world!"
When I tried to sing the documentation, <<go_function>>the first code fragment is exported to html, so I have two html exports <<go_function>>. I would like it to be <<go_function>>exported as a link that points to the actual definition at the end of the document. How can i do this?
source
share