Markdown Flavor

What is the Markdown Flavor supported by Nova?

I can’t figure our why tables on my extension’s readme are not displayed.

They work fine in GitHub and in another MD editor.

For example:

| Event | Description |
| -- | -- |
| `close` | The `close` event is emitted after a process has ended and the stdio streams of a child process have been closed. Arguments:<br>`code` number The exit code if the child exited on its own. |

Wow!

The header need three or more hyphens (—).

This works…

| Event | Description |
| --- | --- |
| `close` | The `close` event is emitted after a process has ended and the stdio streams of a child process have been closed. Arguments:<br>`code` number The exit code if the child exited on its own. |
1 Like