The problem: You want to print a bunch of stuff in perl to an HTML file but you do not want to quote everything by hand. The Solution: Metaquote seems like it should work, but it does not. You want qq{}. This little guy does what you want: print qq{ he is so "special" }; see also http://tlc.perlarchive.com/articles/perl/ts0001.shtml