1

I have the following XML element being converted to HTML by XSLT. My XSLT processor is Microsoft 1.

When I call an element from my XML to be displayed in an <li></li> tag in XSLT I want to be able to specify where an individual <li></li> text content will continue on a new line once it reaches a certain point.

I tried adding a <br></br> into where I wanted the breaks to occur in my XML elements but it just results in a new line having a bullet point next to it which I don't want.

What is the best way to do this?

Here's an example of my code:

XML ELEMENT being called into <li></li>. In this example two <li></li> would be created as my XSLT splits the element into different dot points through the ; as a delimitor.

<research>Strategies and Approaches to Teaching and Learning Cross Cultures,  Office for Learning and Teaching,  
    LOL - Grant (pre-2013),  2008 - 2052, $90,000;  Parkour strategies and parallel jumps for spatial data monitoring and join processing,  
    Right Wing Politics,  JSA Early Career Artifact - Grant,  2004 - 20010,  $14,0000.
    </research>
user2285167
  • 55
  • 1
  • 2
  • 11
  • Your question is not clear. Especially this part: "*I want to be able to specify where an individual
  • text content will continue on a new line once it reaches a certain point.*" You want to specify this how? And where? Manually? In the source XML document itself? – michael.hor257k Apr 07 '15 at 17:18
  • Doesn't answer my question. – michael.hor257k Apr 07 '15 at 17:59
  • Okay. I would like to be able to control what I showed you above for each
  • manually, in either the XML or XSLT whichever offers the best possible solution. Does that answer your question more clearly?
  • – user2285167 Apr 07 '15 at 18:08