Hi, On Monday 08 January 2007 03:24, Alexey Eremenko wrote: > Another problem that I just came across is and sign"&": > > <!-- I'we got a serious problem here, the interpreter intercepts "&" > sign within a URL, effectively preventing me from using any > search engime results. > <para> > Nice demo videos: > <ulink > url="http://youtube.com/results?search_query=looking+glass+3d&search=Se >arch"/> </para>
This is one of the specialities of XML. ;-) The '&' (ampersand) character is reserved for entities. If you want to have a single ampersand, you have to escape it by using "&". The corrected url is: "http://youtube.com/results?search_query=looking+glass+3d&search=Search" (Of course it will be rendered as you wrote above.) Bye, Tom -- ---------------------------------------------------------------------- SUSE LINUX Products GmbH >o) Documentation Team Maxfeldstrasse 5 /\\ Technical Editor 90409 Nuernberg, Germany _\_v http://en.opensuse.org/Documentation_Team --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
