# Line break in XML file?

**URL:** https://forum.kirupa.com/t/line-break-in-xml-file/239729
**Category:** flash
**Created:** [September 25, 2007, 1:53pm UTC](https://forum.kirupa.com/t/line-break-in-xml-file/239729 "2007-09-25T13:53:24Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bduenskie](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/bduenskie/32/4059_2.png) [@bduenskie](https://forum.kirupa.com/u/bduenskie)
#### Post date: [September 25, 2007, 1:53pm UTC](https://forum.kirupa.com/t/line-break-in-xml-file/239729/1 "2007-09-25T13:53:24Z")

</div>

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

```auto
<?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.
