Support rtl languages by adding a direction option

pull/358/head
Irene Oppo 3 years ago committed by Irene Oppo
parent 0f559258c5
commit 53223c4de0

@ -2,6 +2,10 @@
display: block; display: block;
} }
.CodeMirror-rtl pre {
direction: rtl;
}
.EasyMDEContainer.sided--no-fullscreen { .EasyMDEContainer.sided--no-fullscreen {
display: flex; display: flex;
flex-direction: row; flex-direction: row;

@ -1767,6 +1767,8 @@ function EasyMDE(options) {
options.shortcuts = extend({}, shortcuts, options.shortcuts || {}); options.shortcuts = extend({}, shortcuts, options.shortcuts || {});
options.maxHeight = options.maxHeight || undefined; options.maxHeight = options.maxHeight || undefined;
options.direction = options.direction || 'ltr';
if (typeof options.maxHeight !== 'undefined') { if (typeof options.maxHeight !== 'undefined') {
// Min and max height are equal if maxHeight is set // Min and max height are equal if maxHeight is set
@ -2080,6 +2082,7 @@ EasyMDE.prototype.render = function (el) {
lineNumbers: (options.lineNumbers === true) ? true : false, lineNumbers: (options.lineNumbers === true) ? true : false,
autofocus: (options.autofocus === true) ? true : false, autofocus: (options.autofocus === true) ? true : false,
extraKeys: keyMaps, extraKeys: keyMaps,
direction: options.direction,
lineWrapping: (options.lineWrapping === false) ? false : true, lineWrapping: (options.lineWrapping === false) ? false : true,
allowDropFileTypes: ['text/plain'], allowDropFileTypes: ['text/plain'],
placeholder: options.placeholder || el.getAttribute('placeholder') || '', placeholder: options.placeholder || el.getAttribute('placeholder') || '',

Loading…
Cancel
Save