ParseError: /Users/JMiller/Projects/multisport-momentum/public/stylesheets/style.styl:15
11| color #031634
12| }
13| a {
14| color font.color
> 15| text-decoration none
16| }
17|
18| .header
expected "indent", got "outdent"
What does this mean? It has something to do with whitespace? What whitespace? How do I fix this?
color
andtext-decoration
-- perhaps one uses tabs and the other uses spaces.xxd style.styl
is one useful tool; if you usevim
or MacVim, you can also use:set list
to see special characters formatted differently. – Copyfont.color
? I'm not sure, but I don't think.
is allowed in variable names. That said, please stay with stylus, it's really quite nice. ;) – Ulphia { ... }
from poster. Renamingfont.color
fixes it. – Ulphi