I just converted a site to Blueprint CSS today, and suddenly all my hyperlinks are showing their URL\'s in brackets, e.g.
This hyperlink
It's likely you have something like this in your CSS:
a:link:after { content:" (" attr(href) ") "; }
That will produce the behavior you describe.
Typically, you would only use this kind of style for the print version of your stylesheet.