Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
initMedium() {
// initialising editor. see http://jakiestfu.github.io/Medium.js/docs/
this.medium = new Medium({
element: this.mediumMount(),
modifier: 'auto',
placeholder: is('String', this.placeholder) ?
// make sure we've got a string to avoid errors internal to medium.js
this.placeholder : "",
autoHR: false, //if true, inserts <hr> after two empty lines
mode: Medium.inlineMode, // no newlines, no styling
//mode: Medium.partialMode, // allows newlines, no styling
//maxLength: this.maxChars, // -1 would disable it
tags: {
/*
'break': 'br',
'horizontalRule': 'hr',
'paragraph': 'p',
'outerLevel': ['pre', 'blockquote', 'figure'],
'innerLevel': ['a', 'b', 'u', 'i', 'img', 'strong']
*/
},
attributes: {
//remove: ['style', 'class'] //TODO does this remove the ng-class?
remove: ['style'] //TODO does this remove the ng-class?
},
});