Hi,
I want to create my document with indentation. Like this :
-
Clause1
a. Clause2 This is a testing clause. b. Clause3 This is a testing clause.
-
Clause2
a. Clause2 This is a testing clause. b. Clause3 This is a testing clause.
But when i write my code , i am not able to get how will i insert the blank line and then insert text (i.e. “This is a testing clause”).
I am using builder.getListFormat().listIndent();
I am able to generate this -
Clause1
a. Clause2
b. Clause3
Clause2
a. Clause2
b. Clause3
I need to insert the blank line and then text without incrementing the count of list.
Thanks