[JAVA] html to powerpoint

Hello!

I try to generate Powerpoint from an html file. But I don’t know how to map the
tag to aspose.slide.

this is a example

some text
more text


div-tag become a paragraph. but how can i force a linebreak inside a paragraph?


can be replaced with “\v” character. Also you can insert new Paragraph.

If I try to add a ‘\v’ to the Presentatin i got an exception:

my code:
this.akt_paragraph.getProtions().add(new Portion("\v"));

invalid escape sequence.

any idea

Oops, sorry, ‘\v’ is for .Net. It’s ‘\u000b’ character.