I'm trying to convert markdown files into html using pandoc,
This is the markdown table format in .md file:
| Name | Unit | Symbol |
|----|----|----|
| variable A | | $a$ |
| variable B | | $b$ |
| variable C | | $\mu$ |
pandoc --toc --standalone --mathjax -f markdown_strict -t html file_name.md -o file_name.html --metadata pagetitle="page title"
but the tables are shown as text. I have used this solution as well but I still have tables as normal text without table borders in html. However directly exporting through ReText the html shows tables without any issue. How do I get the tables in html file while using pandoc?