I'm trying to render a table in a :markdown
filter in HAML. I've checked the syntax against a cheatsheet and tried both syntaxes presented.
:markdown
### This is [markdown](https://devhints.io/markdown) yay!
------
| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
------
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content
Here's the result. The first line and the horizontal rules are just to confirm that the contents are in fact being translated into Markdown—except for the thing I really care about, the table.
What am I doing wrong? Why is this not working?