cs150bf / ever-notedown

Atom Editor Plugin
MIT License
140 stars 13 forks source link

Denote $ (USD) in Markdown $...$ delimited notation #19

Closed 7k50 closed 8 years ago

7k50 commented 8 years ago

Hi, it's me again :)

I am trying to create a simple table that contains mathematical notation including a dollar sign to denote US Dollars.

Since notation is demarcated by $ notation $, I have tried escaping the dollar sign, like so:

| Today     | 1 yr           |
|-----------|----------------|
| $ \$100 $ | $ \$100(1.1) $ |

Instead of getting the desired output:

Today 1 yr
$100 $100(1.1)

I get this which seems to be a bug-erroneous output:

screen shot 2015-11-02 at 20 11 10
cs150bf commented 8 years ago

Thanks for finding the bug! Let me know if it's still an issue.

7k50 commented 8 years ago

I think it works as intended now. Thanks for fixing it!