Nigecat / obsidian-desmos

Embed graphs directly into your obsidian notes
GNU General Public License v3.0
125 stars 7 forks source link

Using pi costant into the interval bounds gives error #86

Closed desk7 closed 1 year ago

desk7 commented 1 year ago

Describe the bug If I set right=pi or right=\pi, I get error.

Expected behavior The function should be plotted up to x=pi

Desktop (please complete the following information):

Additional context The full code I used is:

```desmos-graph
    left=0; right=pi;
    top=2; bottom=-2;
    grid=false;
    ---
    y=\sin(x)
and also
    left=0; right=\pi;
    top=2; bottom=-2;
    grid=false;
    ---
    y=\sin(x)