Hi all,
When weaving with noweb style chunks is there a way for the noweb references to become links back to the chunk in the exported HTML?

For example when the following is woven:

** weaving
   :PROPERTIES:
   :tangle:   yes
   :END:

#+name: foo
#+begin_src emacs-lisp 
  (foo)
#+end_src

#+begin_src emacs-lisp :noweb tangle
  <<foo>>
#+end_src

I'd like the `<<foo>>` in the HTML output to be a link to the `foo` source block.

Thanks!
-deech