File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -89,28 +89,28 @@ First, configure a new ``scssphp`` Assetic filter as follows:
8989
9090 .. code-block :: xml
9191
92- <!-- app/config/config.xml -->
93- <?xml version="1.0" charset="UTF-8" ?>
94- <container xmlns="http://symfony.com/schema/dic/services"
95- xmlns:assetic="http://symfony.com/schema/dic/assetic">
92+ <!-- app/config/config.xml -->
93+ <?xml version =" 1.0" charset =" UTF-8" ?>
94+ <container xmlns =" http://symfony.com/schema/dic/services"
95+ xmlns : assetic =" http://symfony.com/schema/dic/assetic" >
9696
97- <assetic:config>
98- <filter name="scssphp" formatter="Leafo\S cssPhp\F ormatter\C ompressed" />
99- <!-- ... -->
100- </assetic:config>
101- </container>
97+ <assetic : config >
98+ <filter name =" scssphp" formatter =" Leafo\ScssPhp\Formatter\Compressed" />
99+ <!-- ... -->
100+ </assetic : config >
101+ </container >
102102
103103 .. code-block :: php
104104
105- // app/config/config.php
106- $container->loadFromExtension('assetic', array(
107- 'filters' => array(
108- 'scssphp' => array(
109- 'formatter' => 'Leafo\S cssPhp\F ormatter\C ompressed',
110- ),
111- // ...
112- ),
113- ));
105+ // app/config/config.php
106+ $container->loadFromExtension('assetic', array(
107+ 'filters' => array(
108+ 'scssphp' => array(
109+ 'formatter' => 'Leafo\ScssPhp\Formatter\Compressed',
110+ ),
111+ // ...
112+ ),
113+ ));
114114
115115 The value of the ``formatter `` option is the fully qualified class name of the
116116formatter used by the filter to produce the compiled CSS file. Using the
You can’t perform that action at this time.
0 commit comments