searchableguy

Results 49 comments of searchableguy

@emsifa @rachids Why not use the URL object provided to you? ```ts function isUrl(text: string, protocols: string[] = ["https:"]) { const url = new URL(text); if (!protocols.includes(url.protocol)) { throw new...

The backend was done. There is an API endpoint if you look into the openapi spec. The only change needed is to create a button which makes a request to...

For the theming, please use the tailwind built in feature. You can switch between class or CSS mode whether changing manually or automatically based on the browser scheme. For this...

I apologise for not being clear. I'm not asking for double sidebar and embedding generated open API pages inside existing docs. I want to add custom items to the sidebar...

Thank you so much. I couldn't find anything about it in the examples and issue so I assumed it wasn't available.

@bourdakos1 I checked the example. I might be missing it but it does not show to use a custom sidebar.js for the API page. Could you clarify this for me?...

That's a good suggestion. I will need to check how that would work with child_process. I was already thinking of feeding LLM the terminal history to chain commands via natural...

@benwhalley So this is *sort* of possible but complex. The issue is adding to the user history will differ based on the shell user is using. I can add shell...