While we're on the subject of Markdown fixes...
Any chance of getting a fix for this one?:
- Make the "New Item" command respect the current style for lists
Right now, if you have a Markdown list like this:
- foo - bar - baz<caret>
pressing 'return' to create a new item adds a '*' before the first item and creates a new line beginning with '* ':
*- foo - bar - baz * <caret>
The expected behaviour would be:
- foo - bar - baz - <caret>
Thanks in advance : )