Taco de Wolff

Results 170 comments of Taco de Wolff

Same thing happens for me, diff-so-fancy v1.4.4 and git v2.51.2. I'm adding a new (binary: PDF) file and getting the same error. I have set `git config --global interactive.diffFilter 'diff-so-fancy...

Maybe try with the `latex` build tag, that would use the system's LaTeX implementation. Does that work?

Good to hear, thanks for the feedback!

Thanks Marius for the quick reply! My initial expectation (adhering to the principle of least-surprise) would be that errors in callbacks are simply not caught/handled (and thus appear in the...

Thanks for the suggestion. The CLI tool is supposed to automatically discover file formats and set the delimiters automatically. I'm not sure what the mimetype for Vue template file is...

Unfortunately you have to specify valid ECMAScript, and using a `%TAG%` is not a valid grammar construct in ES. You'd have to run the minifier after replacing the variables, or...

Thinking about this a little more, why do you need a separate map at all? That makes it essentially two separate data structures in one. Why don't you store the...

Sorry for the late response, but the CSS minifier is somewhat primitive as of yet. However, custom attributes are notoriously restrictive in the amount of minification, though stripping whitespace seems...

You're right, the bleed/margin is giving problems. The `globalCompositeOperation` would have to be enabled between each layer drawn separately (offscreen?) and then drawn to the canvas using the original source-over....

> @tdewolff The `globalCompositeOperation` can be changed to `"lighter"` before rendering the vector tile layer, and back to `"source-over"` afterwards. No need to draw anything offscreen. Are you sure that...