Joe Pea
Joe Pea
More specifically, I don't think we need to handle `@` specifically inside an `@example` block, but we should be able to escape characters *anywhere* in a JSDoc comment. F.e. using...
Hey @Koooooo-7 thanks for taking time to tackle this issue. I am wondering if it is worth adding code to support basically a legacy and unmaintained project, and if it...
Btw, check out https://shiki.style/, a more modern syntax highligher than Prism, uses ES modules, etc.
The situation I ran into is that trying to create JSX types for Custom Elements, it is leaking into the JSX types, causing unexpected errors: `| string` fixes the error,...
@saschanaz I ran this code, ```js const img = document.createElement('img') img.onerror = (...args) => console.log(args.length, ...args) img.src = '@#$%' ``` and it logs an `1, Event` (not `1, ErrorEvent`) in...
Related, I've added a proposal to `custom-elements-everywhere` for a new test that will show which frameworks allow full control of the DOM via templating syntax: - https://github.com/webcomponents/custom-elements-everywhere/issues/2352 Lit and Solid.js,...
If you do this: ```js response.end('some message') // ... later, with the *same* response ... response.end('another message') ``` you will get that error. Make you you write response.end like this:...
Does iredmail come with its own web frontend? Or do we connect something else to it like Redcube?
The screenshot also shows the issue in - https://github.com/aunetx/blur-my-shell/issues/734 (the dock border radius is gone after turning on blur effects)
See [The Death of Custom Media Queries](https://www.stefanjudis.com/notes/the-death-of-custom-media-queries/). We can use container queries instead: ```css /* Define all your custom media queries this way, in the :root */ :root { --is-mobile:...