如何在 ckeditor 5 中解析编辑器外部的注释,同时解析注释注释未删除的注释。
试试这个
constructor(private readonly commentsRepository: CommentsRepository) {}
ngOnInit() {
this.commentsRepository.on('resolveCommentThread', (event) => {
const annotation = event.annotation;
annotation.remove();
});
}