A calm place to write long-form, and publish it to the open social web. skypress.blog/
0

Configure Feed

Select the types of activity you want to include in your feed.

Document optional mentions field in gutenberg content lexicon

+5
+5
lexicons/blog.skypress.content.gutenberg.json
··· 16 16 "type": "array", 17 17 "description": "The Gutenberg block tree exactly as produced by the editor's `onSaveBlocks` (NOT rendered HTML). Each item is a block node: `{ name: string, attributes: object, innerBlocks: block[] }`, where `name` is the Gutenberg block name (e.g. `core/paragraph`). Items are typed `unknown` because block attributes are open-ended per block type.", 18 18 "items": { "type": "unknown" } 19 + }, 20 + "mentions": { 21 + "type": "array", 22 + "description": "Optional, additive. Accounts mentioned in the body, mirrored from the inline `<a data-did>` anchors in the block tree. A flat discovery list for other appviews; SkyPress's own reader renders mentions from the inline anchors, not this field. Each item is `{ did: string, handle: string }`.", 23 + "items": { "type": "unknown" } 19 24 } 20 25 } 21 26 }