Fork me on GitHub
#cljsjs2015-11-10
>
jannis21:11:05

cljsjs/highlight packages quite a few CSS files. Can those be accessed from ClojureScript or referenced in an HTML file in a ClojureScript project somehow?

martinklepsch21:11:51

@jannis: there’s no built-in way of doing that. These CSS files are available on the classpath.

martinklepsch21:11:13

So you can serve them from there if you need to.

jannis21:11:52

Right. Or perhaps I can somehow extract them and put them in the target dir using boot.

martinklepsch21:11:04

That should be possible too. sift is your friend I guess simple_smile

jannis21:11:13

Thanks. I'll give that a shot simple_smile

jannis21:11:24

@martinklepsch: Perfect. That did the job.

jannis21:11:39

Pretty cool.