Viraj Kanwade
Viraj Kanwade
Found the initial issue: https://github.com/pagedjs/pagedjs/blob/main/src/modules/paged-media/counters.js#L211 querySelectorAll does not support pseudo elements. So it cannot find any li because it is looking for li:before based on the CSS `.wrapper ol>li:before`. If...
For now as a work around, I have used separate counters. But its ok since I only have 2 levels nesting. If the nesting is dynamic, it will be a...
``` FormatResult FormatBookmarkField(BookmarkField bookmarkField) { this.fieldInfos.AddBookmark(bookmarkField.Name); return FormatResult.Ignore; } ``` `this.fieldInfos` is null which is raising this exception. ``` public void RenderObject(XGraphics graphics, XUnit xPosition, XUnit yPosition, XUnit width, DocumentObject...
From https://docs.continue.dev/setup/configuration#best-overall-experience: https://huggingface.co/voyageai/rerank-1/tree/main https://huggingface.co/voyageai/voyage-code-2
It would also be good if user_info_dict and oauth tokens were made available to the fake email function. That way, if I need to create a custom fake email and...
Waiting for this!
> One question: In our e2e test, we already run fastapi server using `uvicorn app:app`, and it works fine (see [here](https://github.com/supertokens/supertokens-python/blob/master/.circleci/setupAndTestWithFrontend.sh#L53)). So i wonder why you ran into an issue?...
> What are the import statements that you have used for the functions from our lib? I had tried ``` from supertokens_python.recipe.multitenancy.syncio import ( create_or_update_tenant, create_or_update_third_party_config, ) ```
> Right. So why do you need to wrap them with `sync()`? The syncio functions gave the "loop already running" error. So I followed the code to see the difference...
> One question: In our e2e test, we already run fastapi server using `uvicorn app:app`, and it works fine (see [here](https://github.com/supertokens/supertokens-python/blob/master/.circleci/setupAndTestWithFrontend.sh#L53)). So i wonder why you ran into an issue?...