Ability to export without title #5146

Closed
opened 2026-02-05 09:44:08 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @Vladimirtishenko on GitHub (Jan 23, 2025).

Describe the feature you'd like

Hello,

The application is designed to manage documents, projects, and could use for manage official materials efficiently. For example, I want to create a cover as a template and apply it to all my pages. When I export the document to PDF, the cover is exported together with the main title of the page. However, this is problematic because I want my cover to fit an A4 format, and if the title is already included on the cover, I don’t need it to appear twice.
For me, the export should only include content from the WYSIWYG editor and not from the title field itself.

Let me know if this makes sense!

Image

Describe the benefits this would bring to existing BookStack users

I think the benefits are clearly described. First of all, users can use book covers and export them without additional text from the title. Additionally, there is an extra use case for covers in official documents, for example.

Can the goal of this request already be achieved via other means?

No

Have you searched for an existing open/closed issue?

  • I have searched for existing issues and none cover my fundamental request

How long have you been using BookStack?

3 months to 1 year

Additional context

No response

Originally created by @Vladimirtishenko on GitHub (Jan 23, 2025). ### Describe the feature you'd like Hello, The application is designed to manage documents, projects, and could use for manage official materials efficiently. For example, I want to create a cover as a template and apply it to all my pages. When I export the document to PDF, the cover is exported together with the main title of the page. However, this is problematic because I want my cover to fit an A4 format, and if the title is already included on the cover, I don’t need it to appear twice. For me, the export should only include content from the WYSIWYG editor and not from the title field itself. Let me know if this makes sense! <img width="1113" alt="Image" src="https://github.com/user-attachments/assets/2f83ee3e-9ad4-473f-bdee-35a8650097e6" /> ### Describe the benefits this would bring to existing BookStack users I think the benefits are clearly described. First of all, users can use book covers and export them without additional text from the title. Additionally, there is an extra use case for covers in official documents, for example. ### Can the goal of this request already be achieved via other means? No ### Have you searched for an existing open/closed issue? - [x] I have searched for existing issues and none cover my fundamental request ### How long have you been using BookStack? 3 months to 1 year ### Additional context _No response_
OVERLORD added the 🔨 Feature Request label 2026-02-05 09:44:08 +03:00
Author
Owner

@ssddanbrown commented on GitHub (Jan 23, 2025):

Hi @Vladimirtishenko,

I'm not really keen on introducing specific settings/configuration to exports, but you could instead add the following code to the "Custom HTML Head Content" customization setting which should hide the title on page PDF exports:

<style>
  .export-format-pdf #bkmrk-page-title { display: none; }
</style>
@ssddanbrown commented on GitHub (Jan 23, 2025): Hi @Vladimirtishenko, I'm not really keen on introducing specific settings/configuration to exports, but you could instead add the following code to the "Custom HTML Head Content" customization setting which should hide the title on page PDF exports: ```html <style> .export-format-pdf #bkmrk-page-title { display: none; } </style> ```
Author
Owner

@Vladimirtishenko commented on GitHub (Jan 23, 2025):

Hello @ssddanbrown, thanks for you answer.
It did work out thanks, i think it solve and issue

@Vladimirtishenko commented on GitHub (Jan 23, 2025): Hello @ssddanbrown, thanks for you answer. It did work out thanks, i think it solve and issue
Author
Owner

@ssddanbrown commented on GitHub (Feb 25, 2025):

Good to hear that helps! I'll therefore go ahead and close this issue off.

@ssddanbrown commented on GitHub (Feb 25, 2025): Good to hear that helps! I'll therefore go ahead and close this issue off.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#5146