Last active
August 29, 2015 14:26
-
-
Save erikflowers/a60f51db078fad5eced1 to your computer and use it in GitHub Desktop.
weather icon input/output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Input format - a name and hex in a big list | |
day-cloudy, f002 | |
day-sunny, f003 | |
... | |
// Outputs | |
// File "weather-icons-variables.less" - Less Variable inside of array: | |
"day-cloudy" "\f002", | |
"day-sunny" "\f003", | |
... | |
// File "weather-icons-variables.scss" - Sass Variable inside of array | |
"day-cloudy": "\f002", | |
// File "icon-list.jade" - Jade, icon class name and hex twice | |
.icon-wrap | |
.icon  | |
.icon_name wi-day-cloudy | |
.icon_unicode () | |
.icon-wrap | |
.icon  | |
.icon_name wi-day-sunny | |
.icon_unicode () |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment