Using Org-mode to write in a literate style is a lot of fun. When I read about coderef labels, they seemed likely to make it even better.
The only problem is that they aren't stripped during tangling. If you
tangle this:
#+BEGIN_SRC sh -n -r :noweb tangle :shebang #!/bin/sh :tangle tangle-test.sh
echo "Working" (ref:working)
#+END_SRC
You end up with:
#!/bin/sh
echo "Working" (ref:working)
That seems like a bug.
Mike.
