1
0
mirror of https://github.com/flarum/core.git synced 2025-07-13 12:56:26 +02:00

mdarea: disable inlines

This was accidentially introduced when updating for v1.0.0 of the mdarea library, and causes user inconvenience.

Fixes https://github.com/flarum/core/issues/2569
This commit is contained in:
Alexander Skvortsov
2021-01-25 19:57:43 -05:00
parent 1df1b136aa
commit 14adb2bed1

View File

@ -29,7 +29,8 @@ app.initializers.add('flarum-markdown', function(app) {
this.editor = new MarkdownArea(this.$('textarea')[0], { this.editor = new MarkdownArea(this.$('textarea')[0], {
keyMap: { keyMap: {
indent: ['Ctrl+m'], indent: ['Ctrl+m'],
outdent: ['Ctrl+M'] outdent: ['Ctrl+M'],
inline: []
} }
}); });
}); });