docs: ♻️ Rewrite various docs pages, add null fields everywhere they were missing, make some Note and User fields mandatory

This commit is contained in:
Jesse Wierzbinski 2025-06-07 22:54:59 +02:00
parent e6f7a27d3e
commit e9b5ccd76c
No known key found for this signature in database
31 changed files with 412 additions and 148 deletions

View file

@ -39,6 +39,13 @@ The Custom Emojis extension adds support for adding personalized emojis to feder
"content": "https://cdn.example.com/emojis/happy_face.webp",
"remote": true,
"description": "A happy emoji smiling.",
"size": null,
"hash": null,
"thumbhash": null,
"width": null,
"height": null,
"fps": null,
"duration": null
}
}
}
@ -95,7 +102,8 @@ Custom Emojis can be added to any entity with text content. The extension ID is
"content": "Hello, world :happy_face:!"
}
},
"extensions": { // [!code focus:16]
...
"extensions": { // [!code focus:23]
"pub.versia:custom_emojis": {
"emojis": [
{
@ -105,6 +113,13 @@ Custom Emojis can be added to any entity with text content. The extension ID is
"content": "https://cdn.example.com/emojis/happy_face.webp",
"remote": true,
"description": "A happy emoji smiling.",
"size": null,
"hash": null,
"thumbhash": null,
"width": null,
"height": null,
"fps": null,
"duration": null
}
}
}