feat: Allow ruby tags in html

This commit is contained in:
Krille 2023-05-31 13:05:06 +02:00
parent 715dca561f
commit b00111381a
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -195,7 +195,11 @@ class HtmlMessage extends StatelessWidget {
'span',
'img',
'details',
'summary'
'summary',
// Not in the allowlist of the matrix spec yet but should be harmless:
'ruby',
'rp',
'rt',
};
}