Michele Lacchia
Michele Lacchia
I encountered this bug as well. It's really a bummer. It strips away the doctype leaving just `html`.
Oh, the solution was trivial. In the middleware, replace `response.content = html_minify(...)` with `response.content = str(html_minify(...))`. I'm using Python 3 though, so `str()` is unicode.
I'm interested as well, what needs to be done exactly to support Stack?
I wrote [stack-hpc-coveralls](https://github.com/rubik/stack-hpc-coveralls), which is based on hpc-coveralls code. It's just an experiment, but at least it's working for my repositories. The changes are pretty heavy and it's really meant...
Hi Cam, thanks for the kind words. Mando exposes the default `Program()` instance that it uses to convert functions to commands (as you can see [here](https://github.com/rubik/mando/blob/master/mando/__init__.py#L10)), or you could create...
Hi Tim, thanks for another big contribution. It's definitely a good thing to offload the complicated parsing to a separate package. 1. Is this backward-compatible with existing Mando usage? 2....
Hi Robert, thank you for your kind words! This is something that I wanted to add myself, but now I don't have time to allocate to this project. I'll be...
Hello, sorry for the delay. Currently I have very little time to work on radon, but this may actually be somewhat easy to accomplish. If in the meantime you want...
Hi @DolajoCZ. At the moment I do not have the bandwidth to work on a new feature, but if someone submits a PR I'll be happy to review it. It...
Interesting. Can you provide a minimal code sample that shows the error?