Enzo Davico

Results 12 comments of Enzo Davico

It should be noted that you could also add the same functionality to the [python script](https://github.com/ObsidianToAnki/Obsidian_to_Anki/blob/feb3db2708559bf386412ef6f8be00753faf7775/obsidian_to_anki.py#L289), but I'm a little rusty in that language, maybe someone else can.

Hi, in #551 we were discussing a very similar problem, @panAtGitHub created a PR, #566 fixes this, it's all explained in the comments.

> +1, I would also like to see the flashcard link to the block of the created card in the markdown file since I typically put all of my anki...

Sounds interesting, I don't think I can implement that, or at least not in this version of the plugin, maybe one of the repository maintainers knows more about it. Maybe...

An improved version of the regex could be this one: ```javascript const OBS_TAG_REGEXP = /#([\p{L}\p{N}\p{Emoji}\p{M}_/-]+)/gu; ``` Allowing to recognise characters from multiple languages and some others from the unicode family....

Hi, I've been trying the scenarios you described but I couldn't replicate them, in my case it's working fine, it adds all the variations correctly. ![Tags in anki](https://github.com/ObsidianToAnki/Obsidian_to_Anki/assets/132226893/eb356483-0fc0-415f-841a-5cd39a6ffb56) It occurs...

> Thank you for your response; it seems like it should solve the issue with Chinese recognition. However, I downloaded the Obsidian to Anki plugin from Obsidian's built-in "Third-party Plugins"...

It is worth mentioning that this new regex will select the most common chinese characters, but it will still fail with any other language containing non-latin characters. Personally, I would...

Interesting, that's what I was worried about. That's the problem with regex, any slight change and it can break everything. `const OBS_TAG_REGEXP = /#(\p{L}+)/gu`. Now that I look at it,...

> 估计要经过转换才能被读取吧? > So, i think reading nested tags from Obsidian would probably require a conversion to be properly interpreted? Not necessarily, if you want to add support for obisidan...