I apologize if this is not right to post here but im not sure where to go with this one as i havent really found an answer myself.

See, heres the thing, as yall surely know when i hit enter on a line once it will not work, it has to be two.

Is that intentional, if so why?

how does one disable that?

  • Ephera@lemmy.ml
    link
    fedilink
    English
    arrow-up
    22
    ·
    21 hours ago

    It’s the way Markdown works. If you put two spaces at the end of a line
    before hitting enter, then it will only do a normal linebreak.

    • bleistift2@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      9
      ·
      21 hours ago

      Example: Type

      Once upon a midnight dreary  
      While I was pondering, weak and weary  
      Over many a quiant and curious volume of forgotten lore  
      

      To get:

      Once upon a midnight dreary
      While I was pondering, weak and weary
      Over many a quiant and curious volume of forgotten lore

      (You can highlight the source code to find the extra spaces at the end of each line). Note that this is different from paragraphs, which add spacing between them:

      Once upon a midnight dreary
      
      While I was pondering, weak and weary
      
      Over many a quiant and curious volume of forgotten lore
      

      Once upon a midnight dreary

      While I was pondering, weak and weary

      Over many a quiant and curious volume of forgotten lore

      • mark@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        18 hours ago

        For anyone who cares, you can get this same behavior of a normal line break by holding shift while pressing enter as well.

        • bleistift2@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          7
          ·
          edit-2
          17 hours ago
          Not
          in
          markdown
          

          (Pressed Shift+Return after every word.)

          Not in markdown.

          But it works in other word processors (like Word, libreoffice) that distinguish between line breaks and paragraph breaks.

  • bleistift2@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    16
    ·
    edit-2
    21 hours ago

    This is how markdown works. There is no way to disable that. This is an old convention from when text editors didn’t wrap lines automatically and enables you to write long paragraphs of text, breaking the lines as it makes sense to you, without creating a paragraph each time.

    See the Lemmy help page on markdown or the Markdown Guide.

  • emptyother@programming.dev
    link
    fedilink
    English
    arrow-up
    5
    ·
    21 hours ago

    It isnt just how Markdown works either, its how HTML works too: Text is grouped in paragraphs there too, not in lines or statements. Of course there is options to force a line break for when its necessary. But most text reads better as paragraphs. And most people overuse manual line breaks.

  • Zagorath@aussie.zone
    link
    fedilink
    English
    arrow-up
    5
    ·
    21 hours ago

    Lemmy uses for its markup a language called “markdown”. It’s the same one used on Reddit, Stack Exchange, as well as in a modified form on Discord.

    Markdown requires two line breaks to define a new paragraph to allow you to break your paragraphs across multiple lines, a useful ability to have with writing that’s going to be tracked by Git, or displayed on some old-school text editors. It also gives you the ability to separate between two paragraphs
    and one paragraph with a line break in it.
    Which is a useful thing to be able to do in some circumstances, like when writing poetry, or sharing your results in !dailygames@lemmy.zip. To enter a “line break”, end a line with two spaces and then press enter only once.

  • penquin
    link
    fedilink
    English
    arrow-up
    4
    ·
    21 hours ago

    Wow, this is an issue I have had even on Reddit and never knew why. Just always did double spaces. Thank you for asking this question and thank you to those
    Who answered.