mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
091f59c241
[ci skip]
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Strip styles
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Settings this to false prevents the inliner from removing the style
|
|
| definitions that have been inlined.
|
|
|
|
|
| Notice that media query styles are not inlined, and hence never
|
|
| stripped.
|
|
|
|
|
*/
|
|
|
|
'strip-styles' => true,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Remove classes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Settings this to false disables the removal of class attributes from
|
|
| your html elements (do not enable this if you use media queries)
|
|
|
|
|
*/
|
|
|
|
'strip-classes' => true,
|
|
|
|
];
|