功能特性
- 自动确保使用指定元素以维持文档结构(例如,第一个块必须是H1元素)。
- 如需强制尾部块为特定类型,请参阅尾部块。
使用方法
import { NormalizeTypesPlugin } from 'platejs';
const plugins = [
// ...其他插件
NormalizeTypesPlugin.configure({
options: {
rules: [{ path: [0], strictType: 'h1' }],
},
}),
];