Hello guys, the problem is very simple: Is there a way to make this footnote stick to the end of the sentence so that the footnote does not stand alone in one line?
Commonly tables can be used to manipulate horizontal placement in your markdown documents although footnote references in table cells don’t work as expected in live preview.
if you change your font size, it will be brought back up or soll.[2] will be seen in the next line
it’s like this
additionally, you can add a css snippet to align your line ends
/*Text Alignment in Live Preview Mode*/
.markdown-source-view.mod-cm6 .cm-line {
text-align: justify;
text-justify: inter-word;
}
/* Text Alignment in Reading Mode */
.markdown-preview-view p {
text-align: justify;
text-justify: inter-word;
}
this will not fix the footnotes carried over to the next line, though, because you can still run out of characters in a line but it will give you some flexibility