Angular6 Summernote 6 CLI注释或批注

Angular6 Summernote 6 CLI注释或批注,angular6,summernote,Angular6,Summernote,您好,我已使用以下代码在Angular 6应用程序中配置了summer note: import { Component, OnInit } from '@angular/core'; import { Title } from '@angular/platform-browser'; @Component({ selector: 'app-form-text-editor', templateUrl: './form-text-editor.component.html',

您好,我已使用以下代码在Angular 6应用程序中配置了summer note:

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等),但它们非常沉重,不需要所有功能。我只需要一个工具来注释或添加注释

这里有人用羽毛笔做了类似的功能:

但我想用summernote来实现这一点……有可能吗?


将此用于角度6。我希望这能节省你的时间。文件很好

谢谢。你的意思是包括注释部分吗?因为我已经毫无困难地安装了。@doctshinds对不起,你是什么意思?angular 4支持它吗?