Since I suspect this might have something to do with the large amount of cards you have, sharing an export of your Anki collection might be useful. Sharing your Yomichan...
Testing with your setup, I do see a bit of delay, but that all seems to be coming from the AnkiConnect side. Nothing looks out of the ordinary from `_onApiGetAnkiNoteInfo`...
Modify your AnkiConnect `__init__.py` and edit its config file to output the log to a file somewhere on your computer: ```diff diff --git a/plugin/__init__.py b/plugin/__init__.py index e51bbeb..f89faa8 100644 --- a/plugin/__init__.py...
> Would this be a potential solution? It's certainly a potential solution, but it does add complexity and introduce other latency. The Anki connection is run on the background page,...
1. There's not a great way to do this, but this kinda works: Enable _Advanced, open _Configure Anki card templates…_, and find and change the following template: ```css {{#*inline "pitch-accents"}}...
@ChubYee share an export of your settings file here
Not necessary, what you provided is sufficient. 1. Set the option _Compact glossaries_ to on. 2. Change line 107 from: ```handlebars {{~#each definition.definitions~}}{{~> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/each~}} ``` To:...
1. ```handlebars {{~#each definition.definitions~}}• {{> glossary-single . brief=../brief noDictionaryTag=../noDictionaryTag ~}}{{~/each~}} ``` 2. See point 2 in https://github.com/FooSoft/yomichan/issues/2179#issuecomment-1159609248, remove the space before the ; .
You can set the font size on any element by adding `style="font-size: ?px;`, as well as any other CSS styles. I'd recommend looking up handlebars templates and HTML, as that's...
That's happening in here due to the `pitchCount` checks adding `` and `` tags. https://github.com/FooSoft/yomichan/blob/4e7762edacb6cfdb49207bbf43102a04706c78a1/ext/data/templates/default-anki-field-templates.handlebars#L202-L217