Passed
Push — feat/markdown-highlighter ( 38353a...53657c )
by Arnaud
03:00
created
config/default.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@  discard block
 block discarded – undo
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' => [
@@ -159,17 +159,17 @@  discard block
 block discarded – undo
159 159
         'format' => 'yaml',
160 160
     ],
161 161
     'body' => [
162
-        'format' => 'md',         // page body format (only Markdown is supported)
162
+        'format' => 'md', // page body format (only Markdown is supported)
163 163
         'toc'    => ['h2', 'h3'], // headers used to build the table of contents
164 164
         'images' => [
165 165
             'lazy' => [
166
-                'enabled' => true,  // enables lazy loading (`true` by default)
166
+                'enabled' => true, // enables lazy loading (`true` by default)
167 167
             ],
168 168
             'caption' => [
169 169
                 'enabled' => false, // adds <figcaption> to images with a title (`false` by default)
170 170
             ],
171 171
             'remote' => [
172
-                'enabled' => true,  // enables remote image handling (`true` by default)
172
+                'enabled' => true, // enables remote image handling (`true` by default)
173 173
             ],
174 174
             'resize' => [
175 175
                 'enabled' => false, // enables image resizing by using the `width` extra attribute (`false` by default)
@@ -182,10 +182,10 @@  discard block
 block discarded – undo
182 182
             ],
183 183
         ],
184 184
         'notes' => [
185
-            'enabled' => false,  // enables Notes blocks (`false` by default)
185
+            'enabled' => false, // enables Notes blocks (`false` by default)
186 186
         ],
187 187
         'highlight' => [
188
-            'enabled' => false,  // enables syntax highlighting (`false` by default)
188
+            'enabled' => false, // enables syntax highlighting (`false` by default)
189 189
         ],
190 190
     ],
191 191
     // data files
@@ -213,17 +213,17 @@  discard block
 block discarded – undo
213 213
     ],
214 214
     'assets' => [
215 215
         'dir'     => 'assets',
216
-        'compile' => [     // Compile Saas
216
+        'compile' => [// Compile Saas
217 217
             'enabled'   => true,
218 218
             'style'     => 'expanded', // 'expanded' or 'compressed',
219 219
             'import'    => ['sass', 'scss', 'node_modules'],
220 220
             'sourcemap' => false, // works in debug mode only
221 221
             //'variables' => ['var' => 'value']
222 222
         ],
223
-        'minify' => [      // Minify CSS and JS
223
+        'minify' => [// Minify CSS and JS
224 224
             'enabled' => true,
225 225
         ],
226
-        'fingerprint' => [ // Add fingerprint
226
+        'fingerprint' => [// Add fingerprint
227 227
             'enabled' => true,
228 228
         ],
229 229
         'target' => 'assets', // target directory of remote and resized assets
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
             'optimize' => [
232 232
                 'enabled' => false, // enables images optimization with JpegOptim, Optipng, Pngquant 2, SVGO 1, Gifsicle, cwebp (`false` by default)
233 233
             ],
234
-            'quality'    => 75,     // Image quality after optimization or resize (`75` by default)
234
+            'quality'    => 75, // Image quality after optimization or resize (`75` by default)
235 235
             'responsive' => [
236 236
                 'enabled' => false, // creates responsive images with `html` filter (`false` by default)
237 237
                 'widths'  => [480, 640, 768, 1024, 1366, 1600, 1920],
Please login to merge, or discard this patch.