From: Patrick W. <pdo...@gm...> - 2007-07-12 16:20:55
|
Hi, using Xilize 3.0.3 beta. I have the following block: bcx. private void run(String[] args) throws Exception { loadAndCheckArgs(args); // Create a JPanel subclass to render the page XHTMLPanel panel = new XHTMLPanel(); which creates the following XHTML <pre><code>private void run(String[] args) throws Exception { loadAndCheckArgs(args); </code></pre> <p>// Create a JPanel subclass to render the page<br> XHTMLPanel panel = new XHTMLPanel(); The <pre> is ending at the first blank line; I expect it to be broken by the first block signature (e.g. a p.). This is a problem because the sample code is about 15 lines long. If I add to the lines it doesn't break, e.g. bcx. private void run(String[] args) throws Exception { loadAndCheckArgs(args); // // Create a JPanel subclass to render the page XHTMLPanel panel = new XHTMLPanel(); TIA Patrick |