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:
"What? - Short title shown in lists <br> Longer description. You can use #tags",
autoHR: false, //if true, inserts <hr> after two empty lines
mode: Medium.partialMode, // allows newlines, no styling
attributes: {
//remove: ['style', 'class'] //TODO does this remove the ng-class?
remove: ["style"], //TODO does this remove the ng-class?
},
beforeInsertHtml: function() {
//this = Medium.Html (!)
// Replace `<br>`s with the `<p>`s we use for line-breaking, to allow
// multi-line pasting. This assumes that pasting happens inside</p>
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',