mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-07 08:23:42 +01:00
Merge pull request #1397 from turt2live/travis/text-format
Document message formats as-is
This commit is contained in:
commit
808a82e811
1
changelogs/client_server/newsfragments/1397.feature
Normal file
1
changelogs/client_server/newsfragments/1397.feature
Normal file
|
|
@ -0,0 +1 @@
|
|||
Document message formats on ``m.text`` and ``m.emote`` messages
|
||||
|
|
@ -2,7 +2,9 @@
|
|||
"age": 242352,
|
||||
"content": {
|
||||
"body": "thinks this is an example emote",
|
||||
"msgtype": "m.emote"
|
||||
"msgtype": "m.emote",
|
||||
"format": "org.matrix.custom.html",
|
||||
"formatted_body": "thinks <b>this</b> is an example emote"
|
||||
},
|
||||
"origin_server_ts": 1431961217939,
|
||||
"event_id": "$WLGTSEFSEF:localhost",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
"age": 242352,
|
||||
"content": {
|
||||
"body": "This is an example text message",
|
||||
"msgtype": "m.text"
|
||||
"msgtype": "m.text",
|
||||
"format": "org.matrix.custom.html",
|
||||
"formatted_body": "<b>This is an example text message</b>"
|
||||
},
|
||||
"origin_server_ts": 1431961217939,
|
||||
"event_id": "$WLGTSEFSEF:localhost",
|
||||
|
|
|
|||
|
|
@ -12,6 +12,16 @@ properties:
|
|||
enum:
|
||||
- m.emote
|
||||
type: string
|
||||
format:
|
||||
description: |-
|
||||
The format used in the ``formatted_body``. Currently only
|
||||
``org.matrix.custom.html`` is supported.
|
||||
type: string
|
||||
formatted_body:
|
||||
description: |-
|
||||
The formatted version of the ``body``. This is required if ``format``
|
||||
is specified.
|
||||
type: string
|
||||
required:
|
||||
- msgtype
|
||||
- body
|
||||
|
|
|
|||
|
|
@ -12,6 +12,16 @@ properties:
|
|||
enum:
|
||||
- m.text
|
||||
type: string
|
||||
format:
|
||||
description: |-
|
||||
The format used in the ``formatted_body``. Currently only
|
||||
``org.matrix.custom.html`` is supported.
|
||||
type: string
|
||||
formatted_body:
|
||||
description: |-
|
||||
The formatted version of the ``body``. This is required if ``format``
|
||||
is specified.
|
||||
type: string
|
||||
required:
|
||||
- msgtype
|
||||
- body
|
||||
|
|
|
|||
Loading…
Reference in a new issue