]> BookStack Code Mirror - bookstack/blobdiff - app/Config/snappy.php
Guest create page: name field autofocus
[bookstack] / app / Config / snappy.php
index 60c26ffd531d2477b9c236c067388f274368bc9b..a87ce805f929d5bf30cbc07ea96949c00cf6953a 100644 (file)
@@ -8,12 +8,20 @@
  * Do not edit this file unless you're happy to maintain any changes yourself.
  */
 
+$snappyPaperSizeMap = [
+    'a4'     => 'A4',
+    'letter' => 'Letter',
+];
+
 return [
     'pdf' => [
         'enabled' => true,
         'binary'  => file_exists(base_path('wkhtmltopdf')) ? base_path('wkhtmltopdf') : env('WKHTMLTOPDF', false),
         'timeout' => false,
-        'options' => [],
+        'options' => [
+            'outline'   => true,
+            'page-size' => $snappyPaperSizeMap[env('EXPORT_PAGE_SIZE', 'a4')] ?? 'A4',
+        ],
         'env'     => [],
     ],
     'image' => [