obsidian-rtl
obsidian-rtl copied to clipboard
Inserting code blocks
When inserting a code block/admonition the RTL direction is kept and code is messed up,
for example:
i fixed it by making every code block/admonition be LTR. This is the css file i added, please consider adding to the plugin:
.cm-s-obsidian .HyperMD-codeblock {
direction:ltr;
}
.markdown-preview-view blockquote {
direction:ltr;
}
/* for editor */
.cm-quote {
direction: ltr;
text-align: left;
}