Export - Disclosure on new page

Is it possible to start a specific disclosure on a new page in an export?

Hi,

You can use the {% newpage %} tag in front of the disclosure text to show it on a new page in the export.

Test information on the first page

{% newpage %}

Disclosure text regarding the text information on a new page

Does this help you further?

Hi,

If I do that I think I will receive a new page for each disclosure?

I only need a new page voor a specific disclosure and not for all.

Thanks

Is it in your code possibe use an if-statement at the moment you need the newpage?

You could do something like this:

{% if curren_topic == "topic_name" %}
    {% newpage %}
{% endif %}

Kind regards