Support for html tags and languages ​​from right to left in Jupyter

On ipython laptops, we can add html tags inside labels. A useful tag for languages ​​from right to left was <p dir=rtl> text </p>that conveniently aligned text to the right.

Is there a way to add html tags or paragraph alignment from right to left in Jupyter?

+4
source share
1 answer

This can be done as follows:

<div style="direction:rtl"> Right-to-left text </div>
+6
source

Source: https://habr.com/ru/post/1627546/


All Articles