bidi rendering sets `display:block` to too many elements
Sugar on discord reported that the div > bdi { display: block }
CSS rule @dakkar added as part of the bidi improvement, matches too many elements, and breaks the rendering of usernames.
Possible solution: replace the CSS with explicit style="display:block"
in each <bdi>
element that is actually a block, in packages/frontend/src/component/global/MkMisskeyFlavoredMarkdown.ts
Alternatively: add a "isBlock" parameter to the Mfm
component, and pass the right value from all the places that use it (default to true, pass false only from the places that display Mfm inline)