Add editorType for post.
简述流程:
- 添加 editorType 字段,默认为 Markdown(0)。
- 在保存的时候,当 editorType 为
MARKDOWN
时,使用 MarkdownUtils 渲染originalContent
的内容到formatContent
。当 editorType 为RICHTEXT
时,直接保存originalContent
字段的内容到formatContent
。也就是接口还是只传入originalContent
,只是额外增加了个editorType
。