You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Events in boards use the type space.board.post, which means they don't render on Element or other clients. They also lack a formatted_body in the content as we process/render the markdown in the client.
Here's what would need to change:
Use regular m.room.message type for board events.
Add a formatted_body prop to the content, and include the post title in there too so it shows up on other clients.
Nested threads should at least show up as flat regular Matrix threads.
The text was updated successfully, but these errors were encountered:
One problem with displaying basic versions of Commune boards posts on clients like Element is that we're going to lose custom emojis or any kind of non-basic markdown formatting that we support.
Element is proving to be especially stubborn. I can't for the life of me figure out why it won't render inline images.
I guess we'll just have to render a basic non-formatted post body for legacy matrix clients and cal it a day.
Events in boards use the type
space.board.post
, which means they don't render on Element or other clients. They also lack aformatted_body
in thecontent
as we process/render the markdown in the client.Here's what would need to change:
m.room.message
type for board events.formatted_body
prop to thecontent
, and include the post title in there too so it shows up on other clients.The text was updated successfully, but these errors were encountered: