Nico Schlömer

Results 241 issues of Nico Schlömer

In pitaya-dark, the background color is `#212946` and the grid color is `#2A3459`. This makes the grid hardly visible. For emphasis, title and axes are also in `grid.color`: ![screenshot](https://user-images.githubusercontent.com/181628/146579359-fede613e-f81a-4bf6-8ae1-7909a254112d.png)

I usually run pytest-cov via tox, with `tox.ini` being ``` [tox] envlist = py3 isolated_build = True [testenv] pytest --cov foobar ``` With this, tox does not create a `coverage.xml`....

![f](https://user-images.githubusercontent.com/181628/83405981-fb8be180-a40d-11ea-8fed-e9d6dc506d0e.jpg)

pre-commit is developed at https://github.com/pre-commit/pre-commit, but npm-trends still lists https://github.com/observing/pre-commit. Should probably be fixed.

I find that `figure` and `figcaption` are apparently [allowlisted](https://github.com/gjtorikian/html-pipeline/blob/main/lib/html/pipeline/sanitization_filter.rb#L47), but the tags are removed in HTML output: ```html Hello! Caption ``` Hello! Caption

Links to the map are generally given in terms of geo-coordinates. I would like to get a link to the individual sensor installed at my house, ideally with popped up...

In the current graph plots ![24](https://user-images.githubusercontent.com/181628/36646184-937d39f6-1a74-11e8-8765-21feaf4fdec0.png) it's next to impossible to distinguish between the individual days. It'd be great to have grid lines at 12am every day. This makes it...

When using ```latex table {data.dat}; ``` the search path for `data.dat` includes `.`, the directory of the main TeX file. In many cases, the figure file is itself `input` from...

One can adapt the LaTeX contet (how to parse macros, environments etc.) with ```python w = LatexWalker(self.string, latex_context=latex_context) ``` This, however is not how LaTeX works. Macro names can take...

enhancement

With ```latex \newcommand{\be}{\begin{equation}} ``` pylatexenc doesn't recognize the `\begin{equation}` as a command, but expects a closing statement which doesn't come.