How to specify blank lines in xml

What is the best way to get blank lines between paragraphs when using xml? I've tried inserting empty tags between the paragraphs, but this does not seem to affect the output.

Thanks,
Ken

Hi Ken,

You may try using “” in your XML file for a line break. Please see the following XML code for your reference:

<?xml version="1.0" encoding="utf-8"?>
<Pdf xmlns="Aspose.Pdf">
    <Section>
        <Text>
            <Segment>
                First Line
                Second Line
            </Segment>
        </Text>
    </Section>
</Pdf>

Please feel free to contact support in case of any confusion.

Thank You & Best Regards,