Hi, I need some help.
I would like to know how you separate a paragraph into different lines. i.e.
username: bull, name: andy.
into:
username: bull,
name:andy.
I would like to have it render in separate lines when viewing documentation using the activiti explorer.
what is the code to do this in the bpmn20.xml file:
<documentation>
Details of the Company Phone request:
Employee ID: ${employeeName}
Requested Phone Manufacturer: ${requestedPhoneManufacturer}
Requested Phone Model: ${requestedPhoneModel}
Phone Price: €${phonePrice}
Full Name: ${name}
House Number: ${houseNum}
Street Address (First Line): ${addressFirstLine}
Street Address (Second Line): ${addressSecondLine}
Street Address (Third Line): ${addressThirdLine}
Town/City: ${townOrCity}
County: ${County}
Country: ${Country}
</documentation>
this above renders all together, when viewing in the activiti exploxer, I would like to view them as on different lines, and need help with the code command to do this.