I'm new in Flarium and just installed Flarum 0.1.0-beta.14.1.
First issue I faced is the RTL support for posts that have mixed directional language (ex. paragraphs with both Arabic and English).
Tried to find any extension or tips for RTL but nothing. So I hacked the code. Here it is:
- Edit
./vendor/flarum/core/less/common/scaffolding.less
, added unicode-bidi: plaintext;
to p
selector.
- Edit
./vendor/flarum/core/less/forum/Composer.less
, added unicode-bidi: plaintext;
to .TextEditor textarea
selector
php flarum cache:clear
This had fixed the issue for me in posted posts, or in post composer. I'm not sure this should go as further as extension or new commit to Flarum core?