I am rendering markdown through pandoc+pdflatex. I'd like to have footnote marks inside of a table (grid_table), with footnote text appearing in the bottom of the page. I did:
+-----------------+-------+---------+
|property | A | B |
+=================+=======+=========+
|a | x | y[^1] |
+-----------------+-------+---------+
[^1]: blah blah
But what I got instead was the footnote being rendered inside the cell of the table. How do I get (expected, I think) behavior, where the footnote is being rendered at the bottom of the page?