I have an mkdocs site used for user guides for my company (using the material theme). I'm in QA so the coding side of things is fairly new to me. I was using mkdocs-prints-site-plugin to print all md files to one PDF, but users only want to print one particular user guide, not all of the guides on the site. If they try to specify pages to print to get only the one they need the print dialog freezes. I want to create a PDF for each user guide. I tried mkdocs-pdf-export-plugin, but that seems to only give the option to print a pdf for each md or group all md files. Is it possible to create several PDF files based on the nav or by specifically telling it which md files to include in each PDF output? Based on my nav below, I'd like three PDFs: 'Mobile for Android', 'Mobile for iOS', 'Printing Agent'.
My nav looks like this:
nav:
- Home: "index.md"
- User Guides:
Mobile for Android:
Introduction: "android/index.md"
System Requirements: "android/system_requirements_android.md"
Receiving Calls While Dictating: "android/receiving_calls_while_dictating.md"
Installation & Getting Started: "android/installing_starting_android.md"
Setting Up Multi-factor Authentication: "android/android_setting_up_mfa.md"
Email Verification: "android/email_verification.md"
Resetting your Password: "android/resetting_password.md"
Using Mobile for Android: "android/using_android.md"
Patients Tab: "android/patients_tab_android.md"
Dictating with Mobile for Android: "android/dictating_with_android_mobile.md"
Transcriptions Tab: "android/transcriptions_tab_android.md"
Settings Tab: "android/settings_tab.md"
Inpatient Workflow: "android/inpatient.md"
Language Access: "android/language_access_android.md"
Updating & Removing Mobile: "android/updating_mobile.md"
Frequently Asked Questions: "android/frequently_asked_questions.md"
Additional Support: "android/additional_support.md"
Mobile for iOS:
Introduction: "ios/index.md"
System Requirements: "ios/system_requirements_ios.md"
Receiving Calls While Dictating: "ios/receiving_calls_while_dictating.md"
Installation & Getting Started: "ios/installing_starting.md"
Setting Up Multi-factor Authentication: "ios/setting_up_mfa.md"
Email Verification: "ios/email_verification.md"
Resetting your Password: "ios/resetting_password.md"
Using Mobile: "ios/using_mobile.md"
Patients Tab: "ios/patients_tab.md"
Dictating with Mobile for iOS: "ios/dictating_with_ios_mobile.md"
Transcriptions Tab: "ios/transcriptions_tab.md"
Settings Tab: "ios/settings_screen.md"
Inpatient Workflow: "ios/inpatient_workflow.md"
Language Access: "ios/language_access_ios.md"
Updating & Removing Mobile: "ios/updating_removing_app.md"
Troubleshooting & FAQ: "ios/faq.md"
Additional Support: "ios/support.md"
Printing Agent: "printing_agent/index.md"