Last modified: 2010-05-15 15:48:28 UTC
Hi, I report a bug when inserting the HTML element <FRAMESET>. Even with the setting rawHTML set to TRUE and the code surrounded by <HTML> tags, the frame set is surrounded by <PRE> tags in the rendered page that makes the frameset incorrect and not displayed... Here is the code I would like to insert: <HTML> <FRAMESET rows="100, 200"> <FRAME src="http://www.google.com"> <FRAME src="http://www.yahoo.com"> </FRAMESET> </HTML> Thank you for your support ! Frederic Keller
1) You can't put that inside an HTML-with-body page, that's totally invalid HTML. It would have to be its own complete entity, and thus could not be contained inside the wiki body text. Perhaps you mean to use an <iframe>? 2) To avoid block-processing issues, avoid the whitespace in your raw-HTML chunks.