Patric Stout

Results 16 issues of Patric Stout

In one of my test-sets I forgot to sanitize the input, and in result I had a `\r` (without any `\n`). This caused a funny effect I thought you might...

"[[|alt]]" is a valid wikilink, but WIKILINK_PARAM_FINDITER did not consider it valid. In result, it was seens as a wikilink, but not marked as _ for, as example, a parser...

I might just be abusing `wikitextparser` at this point, but I find the behaviour of updating `string` sometimes a bit weird, so let me explain a bit what I am...

I might just be completely overlooking this, but is it possible to get the attribute of a row in a table? ```python import wikitextparser wtp = wikitextparser.parse('{|\n|- style="background: black;"\n| cell1\n|-...

Another corner-case, this time because of a somewhat invalid user input. Given the following example, with `wikitextparser==0.46`: ```python import wikitextparser wtp = wikitextparser.parse("** Item 1\n** Item 2\n") print(wtp.get_lists()[0].items) print(wtp.get_lists()[0].sublists(0)) print(wtp.get_lists()[0].sublists())...

I have the following setup: Flux2 is running in namespace `flux-system`. Prometheus is running in namespace `monitoring`. I am trying to get image automation to work with as little duplication...

Initially I wanted to make a PR for this, but before I do it might be better to check if I am overlooking something. While trying out ESPNow, I noticed...

Initially images on mobile were set to `width: 100%` to counter this, but as of #141 this is no longer the case. It turns out there are images that are...

bug

Currently errors are shown in the order they are found. But it can be difficult to figure out where it comes from, in which template, etc. Adding linenumbers (and Pages...

enhancement

Please improve the error you get if you upload, say, a 10MiB file. It should not be allowed, but the user should be told more clearly what went wrong, and...

bug