trulia / hologram

A markdown based documentation system for style guides.
http://trulia.github.io/hologram
Other
2.16k stars 199 forks source link

Ignore subdirectories or specific file #257

Closed JiDai closed 4 years ago

JiDai commented 8 years ago

Hi,

I want to ignore a specific files but it doesn't work. Here is my config :

ignore_paths:
    - "./www/static/sass/templates/_icons.scss" # Not working
    - "./www/static/sass/templates/*" # Not working

I tries this and it works :

ignore_paths:
    - "_icons.scss" # Working

But I have another _icons.scss in my tree and it is also ignored. And I don't want to. I have a constraint : I cannot changes filenames

Thanks for help