Nejc Habjan

Results 180 comments of Nejc Habjan

We do this in our package.json as a workaround so we can use YAML: ```json "scripts": { "lint:links-yaml": "js-yaml -c .markdown-link-check.yml > .markdown-link-check.json", "lint:links": "yarn lint:links-yaml && markdown-link-check --quiet -c...

Hi @tcort, I tried to move this topic upstream for full support in needle itself e.g. including `no_proxy`, in https://github.com/tomas/needle/pull/382, as using the standard environment variables is usually the way...

@fhaftmann you can already bump needle yourself as `markdown-link-check` does not pin it to the exact version: https://github.com/tcort/markdown-link-check/blob/master/package.json#L42 However, the implementation of `no_proxy` in that PR only seems to cover...

Similar reports are also in https://github.com/GoogleContainerTools/kaniko/issues/763 if that helps. I'm also seeing the `unexpected EOF` error but it seems like it mostly happens in GitLab CI, not locally when trying...

Because this happens only to some of our projects that do `COPY . .`, I'm starting to wonder whether some files in the repo (maybe in combination with `.dockerignore`, not...

For GitLab's Static Site Editor (from #2212), this would be something like: `{{ repo_url }}/-/sse/{{ branch }}/docs%2F{{ page.file.src_path | urlencode }}` Or optionally with a redirect back to the site...

Thanks for the quick feedback @waylan. Based on your info I put together a quick thing here: https://gitlab.com/nejch1/mkdocs-gitlab-static-site-editor, which does the job for me (initial PR [here](https://gitlab.com/nejch1/mkdocs-gitlab-static-site-editor/-/merge_requests/1/diffs) if you have...

Why not try to have the changes merged into this project? :) The maintainer has already signaled in #998 that he was willing to merge httpx-based work, they were just...

Ah sorry, the async/sync mess :/ I'm not sure either. It seems like some people are trying though, if this helps with future discussion: https://stackoverflow.com/questions/55152952/duplication-of-code-for-synchronous-and-asynchronous-implementations

I think that something similar to what @khvn26 is suggesting for Sync/Async classes is done in Kenneth Reithz's requests-html (admittedly a much smaller wrapper library): https://github.com/psf/requests-html/blob/master/requests_html.py#L787-L843