Taco de Wolff

Results 170 comments of Taco de Wolff

You have to have some sort of LaTeX package installed. Specifically, it uses the `latex` and `dvisvgm` executables which have to be in your path.

So you installed LaTeX on your system and used the `-tags latex` when building/running your Go project? Is the output the same as before, or is it buggy in another...

Please run it as `go run -tags latex file.go`, the `latex` is a tag not a path. The `latex` and `dvisvgm` binaries should be available in your `$PATH` environment variable....

Did you check the error that comes out of `canvas.ParseLaTeX`? Remember to wrap your equation in `$` for input: ```go p, err := canvas.ParseLaTeX(`$y_i = y$`) if err != nil...

I need to specify the name as well, as it has to follow a specific naming pattern that I set in Nginx. I don't see the problem with `renew`, when...

@gzivdo that looks like the best fix, is there a possibility to get this merged please?

This was happening only on MacOS using Python 3.9 (and possibly higher), with CIBuildWheel. Fixed by moving the `setup_requires` from `setup.py` to `pyproject.toml`: ``` [build-system] requires = ["setuptools>=42", "cffi>=1.0.0"] build-backend...

Agreed with renaming the methods, it was confusing when reading about milters in other places. Another confusion is that you can't modify headers from the HeaderField (currently Header) nor EndOfHeader...

Hi Kobi, that is because the \uFFFD character cannot be the start of an identifier (or its continuation), which would be the only possibility to have that character present (except...

Unfortunately, the client's file is invalid JS and will throw an error with any spec compliant parser. I've changed the lexer to clear the error if you decide to continue...