在我更熟悉CKEditor5之后,它对我来说看起来很复杂。
我的计划是拥有这样的视图:
<div class="chart" value="{'title': 'my title'; 'data': [2,5,8,10]}">
<svg><!--JS generarted content that i want show without register the hole svg shema--></svg>
</div>
还有一个这样的模型:
<chart value="{'title': 'my title'; 'data': [2,5,8,10]}></chart>
所以我只需要向上转换外部div,对于向下转换,我想在内部生成div和svg内容。 恐怕我需要为此注册svg shema孔和转换器。 是否可以选择在我的小部件中包含不需要转换为模型但仍可以呈现的内容?
感谢您的帮助