RTL | Minor Issues

The RTL support for the user interface is mostly functional. Thank you for that :hugs:.

There are still some minor points I want to highlight regarding the RTL support in RemNote:

  1. The folding triangle should point to the left instead of to the right.
  2. The options menu gets immediately hidden when hovered over.
Demonstration

  1. The breadcrumb order should support RTL
Demonstration 2

should be 1 > 2 > 3 or (preferably if the folder names are in RTL) 3 < 2 < 1

1 Like
  1. When writing in Arabic, math equations are rendered from right to left also, which is undesired in my case:
    image

This was easily fixed using custom css:

.katex {
    direction: ltr;
    unicode-bidi: isolate;
}

image

:wink:

2 Likes