jacobrask / styledocco

Automatically generate a style guide from your stylesheets.
http://jacobrask.github.com/styledocco/
MIT License
1.06k stars 119 forks source link

scss compilation #123

Open gagagast opened 10 years ago

gagagast commented 10 years ago

Hello, When i launch a simple command like : styledocco www\common\scss All scss partials files generate their html file documentation in the default folder (docs) but the styles are not compiled.

Example : _button.scss

/* Buttons

<a class="btn">button</a>
<a class="btn btn--small">button</a>

*/

.btn{ padding: 7px 10px; background:$c1; color: #fff; text-transform: uppercase; border-radius: 3px; text-align: center; &--small{ padding: 6px 6px; font-size: 11px; font-size: 1.1rem; } }

An idea ?

highvoltag3 commented 9 years ago

Does the file start with _? If so it's probably the same as #104

As a matter of fact this two issues are connected and it's root cause is #124 since the common path between say:

    /styles/sass/partials/_partial1.scss
    /styles/sass/partials/_partial2.scss

Is /styles/sass/partials/_ which is not a real path but fails silently.

Enkil commented 8 years ago

Hi! Can you say how I can fix this problem in my project? I have much partials scss-files which states with _ and one main.scss with import thems

Thank you!