Can you export a thread as a PDF?
No. Plain has no built-in way to download or export a thread as a PDF, and there is no export button on the thread timeline.
Build an export with the API
A developer can retrieve the full conversation with the GraphQL API and generate a PDF from it.
- Use the
threadquery to fetch the thread. - Paginate through
timelineEntriesto retrieve all messages and notes. - Read the
llmTextfield on each entry. It holds a plain-text version of that entry, which you can use to reconstruct the conversation. - Pass the reconstructed text to a PDF generation library of your choice.