Ludwig Stecher
Ludwig Stecher
Currently emulsion uses a statically linked C library for AVIF support. Because this makes the build process more complicated and dependant on the build platform, it is feature gated. Recently...
I mentioned this in #64 as well. Allowing to pipe arbitrary commands that return binary image data to emulsion would open up all sorts of new possibilities. The most obvious...
### Is your feature request related to a problem? Please describe. Pomsky doesn't implement all regex features, and probably never will, given the vast number of regex engines. ### Describe...
I'm not affiliated with the Rust Foundation, just wanted to give you a heads-up that your usage of the ["Rust" word trademark](https://foundation.rust-lang.org/policies/logo-policy-and-media-guide/) may be considered infringing. Including the word "unofficial"...
Consider this HTML snippet: ```html An emphasis ``` is converted to one of ```md An *emphas**is* An _emphas__is_ ``` which is rendered as one of An emphas**is An emphas__is The...
turndown uses `_` by default for emphasis (italic text), but this doesn't work within a word. ```html Brussels is spelled with 3 s's. ``` - Rendered: Brussels is spelled with...
### Build tool Vite ### Where do you see the problem? - [ ] In the browser - [X] In the terminal ### Describe the bug I'm using the vite...
### Is your feature request related to a problem? Please describe. Pomsky should prevent you from accidentally introducing infinite recursion. Oniguruma actually does this, so Pomsky may produce regexes that...
### Is your feature request related to a problem? Please describe. Most regex engines supported by Pomsky use backtracking. This means that Pomsky is susceptible to catastrophic backtracking. This should...
### Describe the bug Lookbehind is [supported](https://caniuse.com/js-regexp-lookbehind) in Safari since March. It should be safe to remove the warning soon. ### To Reproduce ```py