Line break in XML file?

I’ve searched all over and I can’t seem to find an answer that works. I have the following XML file:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<news>
    <item>
        <news><![CDATA[test<br />test1]]></news>
        <url>http://www.mysite.com</url>
    </item>
</news>

I’m trying to find a way to break a line in the <news> section. I’ve tried the following:
<news><![CDATA[test<br />test1]]></news>
<news>test<![CDATA[<br />]]>test</news>
<news>test
test</news>
<news>test
\r test</news>
<news><![CDATA[

None of these methods work, any help would be most appreciated.