You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(training): standard PDF iframe URL and clarify PDF vs SVG for links
- Point iframe at plain PDF URL (no viewer hash) for native link behaviour
- Nova copy: recommend PDF for clickable roadmap links; SVG as static-only
Made-with: Cursor
'pdf' => 'PDF (recommended — keeps clickable links from the file)',
161
+
'svg' => 'SVG (static graphic; exports usually do not preserve PDF links)',
162
162
'none' => 'None (remove placeholder output)',
163
163
])
164
164
->default('pdf')
165
-
->help('Use [[embed_roadmap_pdf]] or [[embed_roadmap]] in Content where the roadmap should appear.'),
165
+
->help('Put [[embed_roadmap_pdf]] or [[embed_roadmap]] in Content where the roadmap should appear. Use PDF when the roadmap must open real URLs from the document.'),
166
166
167
167
Text::make('Roadmap PDF embed URL', 'roadmap_pdf_embed_url')
168
168
->nullable()
@@ -174,7 +174,7 @@ public function fields(Request $request): array
174
174
$field->hide();
175
175
}
176
176
})
177
-
->help('HTTPS URL to the roadmap PDF. Used when format is PDF.'),
177
+
->help('HTTPS URL to the PDF. Shown in an iframe with the browser’s built-in PDF viewer so links inside the file stay active.'),
178
178
179
179
Textarea::make('Roadmap SVG', 'roadmap_svg')
180
180
->nullable()
@@ -186,7 +186,7 @@ public function fields(Request $request): array
186
186
$field->hide();
187
187
}
188
188
})
189
-
->help('Full <svg>...</svg> markup from your design tool. Used when format is SVG.'),
189
+
->help('Optional: paste full <svg>...</svg> only for a non-interactive graphic. For clickable resources, prefer PDF above.'),
0 commit comments