Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 544 Bytes

File metadata and controls

27 lines (24 loc) · 544 Bytes
layout post
title RTL (Right-to-Left) Support (experimental)
date 2017-08-23
category how-to
author typora.io
tags
RTL
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;
}