- version 3.6
Check those constraints:
$this->anything()
| <?php | |
| /** | |
| * @author Atanas Vasilev | |
| * @link http://pastebin.com/dHbqjUNy | |
| */ | |
| define('STR_BOM', "\xEF\xBB\xBF"); | |
| $file = null; | |
| $directory = getcwd(); |
| /* Basic two stop gradient */ | |
| .example-gradient { | |
| .linear-gradient(150deg, #eee, #aaa); | |
| } | |
| /* Outputs */ | |
| .example-gradient { | |
| background: -webkit-linear-gradient(150deg, #EEE 0%, #AAA 100%); | |
| background: -moz-linear-gradient(150deg, #EEE 0%, #AAA 100%); | |
| background: -ms-linear-gradient(150deg, #EEE 0%, #AAA 100%); | |
| background: -o-linear-gradient(150deg, #EEE 0%, #AAA 100%); |
| # vi: ft=dosini | |
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = nvim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| pager = delta | |
| [column] |
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For less, I'm using the ruby version because this is what they suggest on the website. The javascript version may be different.
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| void | |
| die (const char msg[]) | |
| { | |
| fprintf (stderr, "Error: %s\n", msg); | |
| exit (1); | |
| } |