instance-oom/ngx-markdown-editor

There is an extra dividing line in the edit box

patui opened this issue · 3 comments

patui commented

line

Thank you very much to the author for making such a good project. I encountered such a situation while using it yesterday.

It's editor's print-margin line.
If you want to hidden this line, you can handle it in onEditorLoaded like this

<md-editor (onEditorLoaded)="onEditorLoaded($event)"></md-editor>
onEditorLoaded(editor) {
  editor.setShowPrintMargin(false);
}

thank you very much。