Your MarkdownEditing plugin is updated. Enjoy new version. For any type of feedback you can use GitHub issues.
- Many fixes in linter.
- Fixed keep centered feature unintentionally switching on (thanks to @suor).
- Fixed a syntax bug with block level HTML tags.
- HTML ID attributes were appearing in the symbol list, fixed.
- New markdown files will be automatically renamed to the first title.
- Added a command palette command for switching list bullet types (actually added in v2.1.1 but didn't get into the changelog).
-
Lint command is renamed to
markdown_lint(waslintbefore). If you set custom keybinding for that, you need to update it with the new command name. -
Hotkey for linting is now removed. The command name for linting is "lint". You can always add the following configuration to your user keymap file to enable it.
{ "keys": ["ctrl+shift+m"], "command": "markdown_lint", "context": [ { "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true } ] } -
Renamed settings key for lint feature to
mde.lint. If you customized one of those settings in you user settings file, you have to updatelinttomde.lint.