If I use a SINGLE enter, it gets removed for some dumb reason (for “space efficiency”, my ass).

If I use TWO enters:

Like this, they stay.

What if I want to list things directly under each other? My only choice would be to use TWO enters and waste even more space.

Why not just respect the single and double use of enters? Unnecessary formatting!!!

  • Lena@gregtech.eu
    link
    fedilink
    English
    arrow-up
    20
    ·
    3 days ago

    You can put a backslash before the newline, like this

    line1\
    line2\
    line3
    

    gets formatted as:

    line1
    line2
    line3