我想仅在编辑器模式下使用ngx markdown编辑器,而没有预览。我如何摆脱预览? 我将模式更改为编辑器,但没有锻炼。 (模式=“编辑器”)
在HTML中
<md-editor name="Content" [(ngModel)]="competency.content" [height]="'425px'"
required maxlength="500" ngPreserveWhitespaces [upload]="doUpload"
[preRender]="preRenderFunc" [options]= "markDownEditorOptions" mode="editor">
</md-editor>
在打字稿文件中
public markDownEditorOptions = {
showPreviewPanel: false,
showBorder: true,
hideIcons: [],
usingFontAwesome5: true,
enablePreviewContentClick: false
}
答案 0 :(得分:0)
默认情况下,其模式仅为编辑器。请删除该模式配置,然后重试一次。 如果可能的话,也可以共享堆叠闪电战。