How can I include metadata properties in the PDF output?

What I’m trying to do

I am trying to export to PDF while including properties in the PDF output.

Things I have tried

In the app.css I could find the following lines:

.print .markdown-preview-view .metadata-container {
    display: none;
}

So I have tried to overwrite it using the following CSS snippet:

.print .markdown-preview-view .metadata-container {
    display: block !important;
}

.print .markdown-preview-view .metadata-add-button {
    display: none !important;
}

Unfortunately, this doesn’t work for whatever reason. Can anyone point me in the right direction?

P.S. Related FR:

5 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.