Bugs: Browse | Submit New | Admin
I am working with musical signs like "#". In a method this "#" is assigned to a variable by default. like: Def foo(bar = "#") end In RDOC this shows up as: foo(bar = " When bar = "\#" it shows up as: foo(bar = "\ The method just works, but RDOC mistakinly filters it out as a comment or something.
Add A Comment:
Date: 2007-05-25 15:22 Sender: Daniel Berger I think this is a difficult exception to handle. But, rather than forcing people to use escapes in their code just so RDoc will pick it up properly (which doesn't work right now anyway), I vote that any '#' sign surrounded by quotes be interpreted literally. I'll see if I can whip up a patch today. Dan