@Jocs How to align block math formulas to left like:
Long paragraph
Short text:
$$
This should be on the left
$$
Long paragraph
I tested some LaTeX functions like flalign but they aren't supported by KaTeX (=invalid formula).
@fxha Do you mean display rendered math block on the left?
I think you could use
.katex-display>.katex {
text-align: left;
}
in your style .css to always align math blocks to left. This works atleast for exporting, but as custom themes arent supported you could try to build your own version and modify the css files, however currently I think the best option is to just wait for custom themes to be supported.
Closing as there seems no valid option to aligned a single math formula but not others.