Created
July 3, 2012 01:56
-
-
Save marthakelly/3037040 to your computer and use it in GitHub Desktop.
Revisions
-
Martha Kelly created this gist
Jul 3, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ [ { "indentLevel": 0, "selector": "body", "declarations": [ " margin: auto", " width: 1000px" ], "children": [] }, { "indentLevel": 0, "selector": "#divID", "declarations": [ " font: 12px Helvetica, Arial, sans-serif", " color: green", " background: yellow" ], "children": [ { "indentLevel": 1, "selector": ".className", "declarations": [ " color: blue", " width: 500px" ], "children": [] } ] } ] This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ var blockToCSS = function blockToCSS(block) { var beginBlock = " {" + "\n", endBlock = "\n" + "}", output = [], sel, dec, block, parentCSS; sel = block.selector + " "; dec = block.declarations.join("; \n") + ";"; parentCSS = sel + beginBlock + dec + endBlock; if (!block.children.length) { return [parentCSS]; } else { var childrenCSS = block.children.map(blockToCSS).reduce(function(acc, children) { return acc.concat(children); }); var prefixedChildrenCSS = childrenCSS.map(function(child) { return sel + child; }); prefixedChildrenCSS.unshift([parentCSS]); return prefixedChildrenCSS; } };