I want to create a pdf layout and stylesheet.
For example, I want a titlepage with the page title, the author and the date.
I tried this:
<div class = "titlepage-content">
<div class="space-name">$space.Name</div>
<div class="export-title">$space.DisplayTitle</div>
<div class="exportinfo">
<div><div>Author:</div>
<div>$creator.FullName</div>
</div>
<div><div>Date:</div>
<div>$dateTimeFormatter.withStyle($exportDate, "MS")</div>
</div>
</div>
But this doesn't.
Another example is, I want the date in the footer. It should be something like
@bottom-right
{
content: "Page " counter(page) "/" counter(pages) ; /* This is the content that will appear in the footer */
font-family: ConfluenceInstalledFont, Helvetica, Arial, sans-serif;
font-size: 8pt;
}
Where can I find a list of the HTML placeholder?
Where can I find a list of the CSS placeholder?
Is there a full documentation?