| layout | post | |
|---|---|---|
| title | RTL (Right-to-Left) Support (experimental) | |
| date | 2017-08-23 | |
| category | how-to | |
| author | typora.io | |
| tags |
|
|
| typora-root-url | ../ |
About where to put those CSS, please follow Add Custom CSS.
This is not fully tested, since I'm not a RTL user, if you found any bugs, please report to hi@typora.io
Add following Custom CSS:
#write {
direction: rtl;
}To exclude code blocks from the RTL effect add the following Custom CSS:
[class^="Code"] {
direction: ltr;
}