@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $this->builder = $builder; |
72 | 72 | $this->config = $builder->getConfig(); |
73 | 73 | $paths = is_array($paths) ? $paths : [$paths]; |
74 | - array_walk($paths, function ($path) { |
|
74 | + array_walk($paths, function($path) { |
|
75 | 75 | if (empty($path)) { |
76 | 76 | throw new RuntimeException('The path parameter of "asset() can\'t be empty."'); |
77 | 77 | } |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | 'ext' => '', // file extension |
85 | 85 | 'type' => '', // file type (e.g.: image, audio, video, etc.) |
86 | 86 | 'subtype' => '', // file media type (e.g.: image/png, audio/mp3, etc.) |
87 | - 'size' => 0, // file size (in bytes) |
|
87 | + 'size' => 0, // file size (in bytes) |
|
88 | 88 | 'content_source' => '', // file content, before transformations |
89 | 89 | 'content' => '', // file content, after transformations |
90 | - 'width' => 0, // width (in pixels) in case of an image |
|
91 | - 'height' => 0, // height (in pixels) in case of an image |
|
90 | + 'width' => 0, // width (in pixels) in case of an image |
|
91 | + 'height' => 0, // height (in pixels) in case of an image |
|
92 | 92 | ]; |
93 | 93 | |
94 | 94 | // handles options |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | |
425 | 425 | try { |
426 | 426 | $img = ImageManager::make($assetResized->data['content_source']); |
427 | - $img->resize($width, $height, function (\Intervention\Image\Constraint $constraint) { |
|
427 | + $img->resize($width, $height, function(\Intervention\Image\Constraint $constraint) { |
|
428 | 428 | $constraint->aspectRatio(); |
429 | 429 | $constraint->upsize(); |
430 | 430 | }); |
@@ -16,14 +16,14 @@ discard block |
||
16 | 16 | 'title' => 'Site title', |
17 | 17 | //'baseline' => 'Site baseline', |
18 | 18 | 'baseurl' => 'http://localhost:8000/', |
19 | - 'canonicalurl' => false, // if true 'url()' function preprends URL wirh 'baseurl' |
|
19 | + 'canonicalurl' => false, // if true 'url()' function preprends URL wirh 'baseurl' |
|
20 | 20 | 'description' => 'Site description', |
21 | - 'taxonomies' => [ // default taxonomies |
|
21 | + 'taxonomies' => [// default taxonomies |
|
22 | 22 | 'tags' => 'tag', // can be disabled with 'disabled' value |
23 | 23 | 'categories' => 'category', |
24 | 24 | ], |
25 | 25 | 'pagination' => [ |
26 | - 'max' => 5, // number of pages on each paginated pages |
|
26 | + 'max' => 5, // number of pages on each paginated pages |
|
27 | 27 | 'path' => 'page', // path to paginated pages. ie: '/blog/page/2/' |
28 | 28 | ], |
29 | 29 | 'date' => [ |
@@ -181,14 +181,14 @@ discard block |
||
181 | 181 | 'format' => 'yaml', |
182 | 182 | ], |
183 | 183 | 'body' => [ |
184 | - 'format' => 'md', // page body format (only Markdown is supported) |
|
184 | + 'format' => 'md', // page body format (only Markdown is supported) |
|
185 | 185 | 'toc' => ['h2', 'h3'], // headers used to build the table of contents |
186 | 186 | 'highlight' => [ |
187 | - 'enabled' => false, // enables code syntax highlighting (`false` by default) |
|
187 | + 'enabled' => false, // enables code syntax highlighting (`false` by default) |
|
188 | 188 | ], |
189 | 189 | 'images' => [ |
190 | 190 | 'lazy' => [ |
191 | - 'enabled' => true, // adds `loading="lazy"` attribute (`true` by default) |
|
191 | + 'enabled' => true, // adds `loading="lazy"` attribute (`true` by default) |
|
192 | 192 | ], |
193 | 193 | 'resize' => [ |
194 | 194 | 'enabled' => false, // enables image resizing by using the `width` or 'height' extra attribute (`false` by default) |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | 'enabled' => false, // puts the image in a <figure> element and adds a <figcaption> containing the title (`false` by default) |
204 | 204 | ], |
205 | 205 | 'remote' => [ |
206 | - 'enabled' => true, // turns remote images to Asset to handling them (`true` by default) |
|
206 | + 'enabled' => true, // turns remote images to Asset to handling them (`true` by default) |
|
207 | 207 | ], |
208 | 208 | ], |
209 | 209 | ], |
@@ -237,17 +237,17 @@ discard block |
||
237 | 237 | ], |
238 | 238 | 'assets' => [ |
239 | 239 | 'dir' => 'assets', |
240 | - 'compile' => [ // Compile Saas |
|
240 | + 'compile' => [// Compile Saas |
|
241 | 241 | 'enabled' => true, |
242 | 242 | 'style' => 'expanded', // 'expanded' or 'compressed', |
243 | 243 | 'import' => ['sass', 'scss', 'node_modules'], |
244 | 244 | 'sourcemap' => false, // works in debug mode only |
245 | 245 | //'variables' => ['var' => 'value'] |
246 | 246 | ], |
247 | - 'minify' => [ // Minify CSS and JS |
|
247 | + 'minify' => [// Minify CSS and JS |
|
248 | 248 | 'enabled' => true, |
249 | 249 | ], |
250 | - 'fingerprint' => [ // Add fingerprint |
|
250 | + 'fingerprint' => [// Add fingerprint |
|
251 | 251 | 'enabled' => true, |
252 | 252 | ], |
253 | 253 | 'target' => 'assets', // target directory of remote and resized assets |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | 'optimize' => [ |
256 | 256 | 'enabled' => false, // enables images optimization with JpegOptim, Optipng, Pngquant 2, SVGO 1, Gifsicle, cwebp (`false` by default) |
257 | 257 | ], |
258 | - 'quality' => 75, // Image quality after optimization or resize (`75` by default) |
|
258 | + 'quality' => 75, // Image quality after optimization or resize (`75` by default) |
|
259 | 259 | 'responsive' => [ |
260 | 260 | 'enabled' => false, // creates responsive images with `html` filter (`false` by default) |
261 | 261 | 'widths' => [480, 640, 768, 1024, 1366, 1600, 1920], |