Diogo Castro
Diogo Castro
> Anchors are handled at the moment I don't think we handle anchor tags at the moment. We do handle `` in headers, but that's it. From `tests/markdowns/without-annotations/anchors_in_headers.md`: ``` ##...
On that point, we should also support for _target locations_ (i.e. ``) outside of headers too.
@breakerzirconia > I had an idea to also highlight the files we will ignore during the check, similar to "Ignoring localhost link:" Good idea, I like that! > but it...
One more use case: I added a regex to `ignoreRefs`, but there's no easy way to tell if that regex is correctly ignoring the links I want to be ignored....
@Martoon-00 I agree with your concern, colour positions should indeed be fixed. I like the idea of gluing `y` to the left and `r` to the right! The blues in...
> I fully agree that making the bar grow from the middle is kinda weird, and taking all the probabilities into account, making blues stick to the yellow seems the...
A bit late to the party, but here's an alternative using `refined` & `circe-refined`: ```scala import io.circe.parser._ import io.circe.refined._ import eu.timepit.refined.api._ import eu.timepit.refined.numeric._ decode[Double Refined NonNaN]("null") ``` ``` Left(DecodingFailure(Predicate failed:...
I ran into this issue today. ~I had `"rust-analyzer.rustc.source": "discover"` configured in vscode (for working with [dylint](https://github.com/trailofbits/dylint?tab=readme-ov-file#vs-code-integration)), and had recently upgraded my rust toolchain.~ ~The solution for me was to...
Another reason why capturing stdout is indeed needed: The [workaround mentioned in the docs](https://github.com/haskell/haskell-language-server/blob/fb5e5c998c7d4f13546ae015191a7983aedf3345/plugins/hls-eval-plugin/README.md#multiline-output) (i.e. use `error`) is not compatible with `doctest-parallel` (and, I imagine, with other similar doctest implementations):...