Ashmit JaiSarita Gupta

Results 111 comments of Ashmit JaiSarita Gupta

@jonaslagoni Do you have any prior design suggestions in mind? To get started, I have thought about this design: ![Screenshot 2024-01-02 102333](https://github.com/asyncapi/modelina/assets/43639341/d660f821-ed6a-434b-b210-7a14b0d61bd2) But this is just an option, I think...

Sounds good to me. I have the same design in mind too. I will start working on it soon.🚀

Hi @AKACHI-4, There are few things we need to fix: - Can you please add a bar between the editors indicating that it can be resizeable? Something similar to this:...

> @devilkiller-ag do you have time to take a look? Hi @jonaslagoni, I think I gave my review earlier on this 🤔

Any update on this @AKACHI-4?

Hi @AKACHI-4, did you had a chance to look up on this work?

Hi @AKACHI-4 any updates on this? Feel free to ask if you are facing any issues.

@jonaslagoni This issue is because we are trying to open GitHub links in the iframe generated by TypeDoc( for rendering apidoc). GitHub doesn't allow its site to be opened in...

After researching more about this I got following solution: sourceLinkExternal $ typedoc --sourceLinkExternal will treat source links as external links that open in a new tab when generating HTML ([Source](https://typedoc.org/options/output/#sourcelinkexternal)).

So instead of using: ``` "docs:api": "typedoc src/index.ts --out ./modelina-website/public/apidocs/generated --name Modelina" ``` in `package.json`, we can use: ``` "docs:api": "typedoc --sourceLinkExternal src/index.ts --out ./modelina-website/public/apidocs/generated --name Modelina" ``` to achieve...