1
2
3
4
5
6
7
8
9
10
11
12
String text = "line 1<br>" +
"line 2<br/>" +
"line three \n still line three"
;
// String text = new LoremIpsum().getParagraphs(1) + "\r\n\n<br><br><br>" + new LoremIpsum().getParagraphs(1);
AsciiTable at = new AsciiTable();
at.addRule();
at.addRow(text);
at.addRule();
at.setTextAlignment(TextAlignment.LEFT);
System.out.println(at.render(50));