I have a page that I need to render inside the parent page. The parent page is created with a template, so I won't know the exact name of the child page until it is created. Is it possible to do something like this:
{include-page:title=%pagetitle% Color}
So, if you are on page 'Apple' the page you are rendering inside 'Apple' would be 'Apple Color.'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can I do it with the run-macro in a template? When the page is named 'Apple', this works in the template:
{include:Apple}
This works as well, somewhere in my template:
{run-now}$page_title{run-now}
But this doesn't work:
{include:{run-now}$page_title{run-now}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think there are a few ways of doing this either using the reporting plugin or the Confluence Run Plugin with the run-now macro and the $page_title pre-defined variable.
{run-now}{include:$page_title Color}{run-now}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.