#Reflow Cleaner
This extension hopes to clean the HTML that Adobe Edge Reflow makes in order to provide a better starting spot for hand coded projects.
The author of this extension is Terrence Ryan (https://github.com/tpryan). I merely added a workaround to get the CSS extractor to work again with a new version of Brackets/Adobe Edge Code CC.
Currently the project does the following:
- Converts id's that you mark in Reflow into elements
- Removes Clearfix classes
- Removes textspan id's
- Extracts color information from color, background-color, and background-image gradients.
- Extracts all font families.
- Extracts media queries.
- Extracts gradient code.
More stuff. I want it to do more, but I'd love feedback on what that more is.
##Thanks
- https://github.com/bahamas10/css-color-names
- For having a complete JSON map of all of the CSS color names.
- http://forrst.com/posts/Find_the_closest_nearest_HEX_color_of_a_small-JDB
- For giving me a way to find the closest CSS color name to a give Hex value.
- http://glazman.org/JSCSSP/
- For a JavaScript CSS parser.