Patch Changes
-
#4587 by @felixfeng33 – Added support for preserving block IDs in markdown serialization to enable AI comment tracking.
Changes:
- Enhanced Serialization: Updated
serializeMd
to supportwithBlockId
option for maintaining block references
Example:
// Serialize with block IDs preserved const markdown = serializeMd(editor, { withBlockId: true, }); // Output: <block id="block-1">Content here</block>
- Enhanced Serialization: Updated