other workarounds :
- in windows cmd (win+x, run command prompt or powershell) :
copy snippet1.css+snippet2.css+snippet3.css obsidian.css
it will concatenate thesnippets[1-3].css
into a file named 'obsidian.css`
(or even faster copy *.css obsidian.css
but make sure you operate from a dedicated folder with only the files you need as t will concatenate all css files into obsidian.css)
- if you have Sass / Less : you can rename your css snippets to *.scss, then create a file
obsidian.scss
which contains :
@import 'snippet1';
@import 'snipper2';
@import 'snippet3';
next, open shell and run sass obsdian.scss obsidian.css
it should create a file obsidian.css
which has the contents of your snippets.