how to insert a table in markdown syntax
Askbot isn't properly rendering tables inserted using markdown syntax. For example the following table:
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
is rendered as:
First Header | Second Header ------------- | ------------- Content Cell | Content Cell Content Cell | Content Cell
which is not the expected behavior.
How can I fix this?
Comments