嗨,我已经使用以下代码在Angular 6应用中配置了夏季笔记:
import { Component, OnInit } from '@angular/core';
import { Title } from '@angular/platform-browser';
@Component({
selector: 'app-form-text-editor',
templateUrl: './form-text-editor.component.html',
styleUrls: ['./form-text-editor.component.css']
})
export class FormTextEditorComponent implements OnInit {
constructor(private titleService: Title) {
this.titleService.setTitle( 'Form Text Editor' );
}
ngOnInit() {
}
}
并且html是:
<div class="summernote"> </div>
工作正常。由于此文本框将由多个用户编辑,因此我想保留历史记录或注释。如果用户想要更改特定单词,则可以添加内嵌注释或注释。我知道有一些文本编辑器可以做到这一点(例如:etherpad,prosemirror等),但是它们很笨重,不需要所有功能。我只需要注释或添加评论的功能。
这里的某人有类似的功能,可进行鹅毛笔:https://codepen.io/sainttushar/pen/yKLdOe
但是我想用summernote实现这一目标...有可能吗?