'How to insert a new line or enter in Microsoft Word references style (XSL file)

I have prepared a modified references style for Microsoft word 2010 document. Following part of XSL file indicates how online resources should be displayed in the references list at the end of my word document.

<source type="DocumentFromInternetSite">
  <column id="1">
    <halign>right</halign>
    <valign>top</valign>
    <format>{[%RefOrder%]}</format>
  </column>
  <column id="2">
    <halign>left</halign>
    <valign>top</valign>
    <format>{%Author:1%, }{%InternetSiteTitle|Title%,}{ %URL:l%}{ Published %Year%.}{ Retreived %Month%.}</format>
  </column>
  <sortkey></sortkey>
</source>

My aim is to have a new line or enter character in the format tag just before { Published %Year%.}{ Retreived %Month%.} in order to have the mentioned information in the next line. I tried to use &#xa; or &#10;, but unfortunately did not work.



Solution 1:[1]

You may want to try the combination CR+LF,

&#13;&#10;

for a line break.

Solution 2:[2]

Add <br></br> in desired location

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 akash.trivedi
Solution 2 holrap