You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Andy Bosch <an...@is-development.de> on 2001/02/06 09:30:39 UTC

Line break in cocoon-html-output

Hi,

I have a strange error in my html-output.

I create a xml and a xsl file. Via a
java-servlet cocoon starts the processing
and shows the output in the browser. Perfect!

But when I look into the generated source,
the resulting html is absolutely strange.
Line breaks are in the middle of tags and
some lines are very very long.
Like this:

<html><head><title>Test</title></head><body
background="FFFFFF"><p
align="left"> ...

How can a force a cr or a line break
in the resulting html that it looks like this:

<html>
<head>
<title>Test</title>
</head>
<body background="FFFFFF">
<p align="left"> ...

Thanks in advance 
Andy