Nadav Hames
Nadav Hames
A *very* hacky solution: Make a `.ts` file with an empty module and put your markdown in the comments for that module. Note that block comments in your markdown need...
Sorry, yeah the Linkbar. I should have been clearer
Maybe the style for a fun, cute mascot can be similar to this panda from https://panda-css.com 
Instead of IDEA, Jetbrains is coming out with Fleet soon which uses LSP, so support should be much easier for that product once it supports editor plugins.
Just did a bit of snooping around, and managed to get bold and italic working in `CustControlFunc`. Other actions like align, ol, ul, links etc. are contained within the rte...
@mrlubos this would be a big win as it would allow for type narrowing via [Discriminated Unions](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#discriminated-unions). Let me give an example: Say you have a union type like this:...
@mrlubos yes in that case I agree that its a new feature or enhancement. Currently i'm on OpenAPI 3.0 because I am using https://typespec.io/ to generate my schema file
I just figured out that it works with string literals: `ok: "hello";` in typespec gets generated as ```yml ok: type: string enum: - hello ``` in openapi and it gets...