Marc Schütz

Results 9 comments of Marc Schütz

I think even the current behaviour is wrong. Consider this: ```css .a { border: none green; /* will be transformed to `border: none;` */ } .b { border-style: dashed; }...

Have you tried explicitly assigning it an empty string? Maybe Safari treats it as `undefined` by default, which would mess up the hash?

That's fine, it was only a suggestion. My use case is that I want to be able to create a subfolder with non-ASCII characters in it by specifying it as...

Another use case: ```svelte export function openInfoPopup() { return new $$self({ target: document.body, }); } Hello World! ``` There's currently no portable way to do this, AFAICS. `` cannot be...

Maybe the `font-synthesis` property [1] would help here? But it seems it's still a proposal only supported by FF and Safari, and could have the side-effect of disabling italics with...

I've run into a variation of this with webpacker. Running `rails assets:precompile` in Rails 6.0.0.beta1 generates packs for several example JS files from `node_modules`: * `webpacker/lib/install/examples/stimulus/application.js` * `webpacker/lib/install/javascript/packs/application.js` * `webpacker/test/test_app/app/javascript/packs/application.js`...

PS: Writing the patch took me about 5 minutes. I then spent another half hour trying to silence several non-sensical Rubocop complaints, each of which made the code worse than...

To illustrate my particular problem: ``` ruby class MyRenderer def initialize template, globals = {} @template = Tilt['handlebars'].new { template } FlavourSaver.register_helper :global do |name| globals[name] end end def render...

I gave it a try, it turned out to be not as simple. The way the current instance is passed through `Tilt` is a horrible hack, and in any case,...