Trying to justify align all text in both Edit/Reading Views. Following the linked post (I keep getting spaces mis-aligning the justified .css), I’m able to make paragraphs justified; however, the same does not work with unordered lists.
I’ve moved away from justification of text myself, so haven’t been following along and some things have changed, but this seems to take care of it with a quick test:
/* reading view - text justification in paragraphs and lists */
.markdown-rendered :is(p,li) {
text-align: justify;
}