Struggling to insert the code, I discovered that the engine will parse any < and > entries into < and > of the generated code. So , I fire up gedit, paste the code, and do a search and replace for & < and >, replacing them with & < > and pasted the new code into the template. The result is -> Success!! -> look at the stumbleupon button below :)
Linux and BSD users can do this quickly on a text file by using sed.
cat file|sed s/'\&'/'\&'/g|sed s/'<'/'\<'/g|sed s/'>'/'\>'/g