Automattic\WooCommerce\Vendor\Sabberworm\CSS
OutputFormat::createPretty
Creates an instance of this class with a preset for pretty formatting.
Method of the class: OutputFormat{}
No Hooks.
Returns
self.
Usage
$result = OutputFormat::createPretty();
OutputFormat::createPretty() OutputFormat::createPretty code WC 10.4.3
public static function createPretty()
{
$format = self::create();
$format->set('Space*Rules', "\n")
->set('Space*Blocks', "\n")
->setSpaceBetweenBlocks("\n\n")
->set('SpaceAfterListArgumentSeparators', [',' => ' '])
->setRenderComments(true);
return $format;
}