when i write a text with a line return, the line return dissapear. That’s something i really hate with markdown. How i can force a line return in jerboa ?

  • jago@lemmy.cafe
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    End your line with 2 spaces, then Enter.
    This results in a line return instead of an ignored Return.

  • Steve@compuverse.uk
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    1 year ago
    A single line return
    disapears
    

    A single line return disapears

    A double line return
    
    Gives a new paragraph
    

    A double line return

    Gives a new paragraph

    A double space at the end of a line  
    Gives a new line
    

    A double space at the end of a line
    Gives a new line

    Same for ending a line with a \
    You just get a new line
    

    Same for ending a line with a
    You just get a new line

    And to recreate this example
    ```

        gives
     a  block  of
      preformed
        code
    

    ```

    >And starting each line like this
    >
    >Gives a block quote\
    thought it's not needed if you use a simple line return\
    or two
    

    And starting each line like this

    Gives a block quote
    thought it’s not needed if you use a simple line return
    or two

    • sugar_in_your_tea@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      1 year ago

      Yup, either put a blank line:

      like
      
      this
      

      Or put two spaces at the end of the line (using underscores for spaces):

      like__
      this
      

      The first renders with a blank line, the second renders without (but the lines are separated). Usually you want the first.

      Example of the first:

      Hello, this is an example.
      This is the next line.

      Example of the second:

      Hello, this is an example.

      This is separate paragraph.