Created
February 23, 2015 15:19
-
-
Save abe33/721f4a82e27c4be8d95d to your computer and use it in GitHub Desktop.
Collect markdown preview styles
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 characters
rules = [] | |
ruleRegExp = /\.markdown-preview/ | |
for stylesheet in document.styleSheets | |
if stylesheet.rules? | |
for rule in stylesheet.rules | |
if rule.selectorText?.match(ruleRegExp)? | |
rules.push(rule.cssText) | |
console.log rules.join('\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With my setup it gives: