Text alignment request

Would like to see text alignment on Remnote, mainly to justify the text

you can enter this code in the Custom CSS power-up Rem:

/* Editor - justify text when tagged with #justify */
.tree-node-container[data-rem-container-tags~="justify"]
div.rem-text
{
text-align: justify;
}

then tag any rems you want to align with ##justify

the result should be something like this:

edit:
if you want the default alignment to be justified for all your rems throughout your KB, you would simply enter this code in the Custom CSS power-up rem:

.rem-text {
text-align: justify;
}
4 Likes