gtg922r / obsidian-numerals

An obsidian plugin which turns a math code block into a full featured calculator
Other
391 stars 8 forks source link

Error when using euro € as currency #1

Closed dneez closed 1 year ago

dneez commented 1 year ago

Hi. Thanks for the plugin. Using € symbol for currency produces following error, when used:

SyntaxError:Syntax error in part "€" (char 16)

Example math block:

```math
item1 = 1000.00$
item2 = 1000.00€
_```
gtg922r commented 1 year ago

Thanks for the feedback. I'll add additional currency symbols in the next pre-release

gtg922r commented 1 year ago

Fixed and available in 0.0.9: Additional currency support

item1 = 1000.00$
item2 = 1000.00€

Now renders as

item1 = 1000.00$    → 1,000 $
item2 = 1000.00€    → 1,000 €
dneez commented 1 year ago

Thanks!